Skip to content

Bump Version

Bump Version #16

Workflow file for this run

name: 'Bump Version'
on:
workflow_dispatch:
jobs:
version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
ssh-key: ${{ secrets.COMMIT_KEY }}
- run: git config user.email "[email protected]"
- run: git config user.name "$GITHUB_ACTOR"
- run: VERSION=$(npm version patch -m "v%s")
- run: git tag ${VERSION}
- run: git push --follow-tags
- run: git push --tags