Merge pull request #649 from cynicaloptimist/development #87
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Bump Patch Version on development branch | |
on: | |
push: | |
branches: [master] | |
jobs: | |
update-version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: "development" | |
- name: Bump patch version and git push | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "GitHub Action" | |
npm version patch | |
git push |