Skip to content

Commit

Permalink
deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ljmerza committed Dec 8, 2023
1 parent deab99f commit b825f5d
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,17 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: '16'

- name: Increment package.json version
run: npm version patch

- name: 'Automated Version Bump'
uses: 'phips28/gh-action-bump-version@master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
minor-wording: 'add,Adds,new'
major-wording: 'MAJOR,cut-major'
patch-wording: 'patch,fixes'
rc-wording: 'RELEASE,alpha'
default: 'patch'

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit b825f5d

Please sign in to comment.