Skip to content

Merge pull request #649 from cynicaloptimist/development #87

Merge pull request #649 from cynicaloptimist/development

Merge pull request #649 from cynicaloptimist/development #87

Workflow file for this run

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