From 54ded9d778ec490ca75e21cf276d7d8b0cac9fbf Mon Sep 17 00:00:00 2001 From: Dale Zak Date: Mon, 26 Apr 2021 09:49:14 -0600 Subject: [PATCH] Incremented package number --- README.md | 11 +++++++++++ action.yml | 2 +- package.json | 4 ++-- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 6b04622..9e8fae2 100644 --- a/README.md +++ b/README.md @@ -40,3 +40,14 @@ jobs: trello-list-name-pr-open: "Reviewing" trello-list-name-pr-closed: "Testing" ``` + +#### Local Build +``` +npm run build +``` + +#### Release Build +``` +git tag -a "v2" -m "v2" +git push origin --tags +``` \ No newline at end of file diff --git a/action.yml b/action.yml index 01634f2..9091082 100644 --- a/action.yml +++ b/action.yml @@ -1,6 +1,6 @@ +author: Dale Zak name: github-commit-to-trello-card description: GitHub Action to attach GitHub commits and pull requests to a Trello card -author: Dale Zak branding: icon: 'check-square' color: 'gray-dark' diff --git a/package.json b/package.json index bef347d..9def881 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "github-commit-to-trello-card", - "version": "1.1.0", + "version": "2.0.0", "description": "GitHub Action to attach GitHub commits and pull requests to a Trello card", - "main": "index.js", + "main": "dist/index.js", "scripts": { "build": "ncc build src/index.js -o dist", "test": "echo \"Error: no test specified\" && exit 1"