bump version v2.2.6 -> v2.2.7 #9
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-version | |
on: | |
push: | |
jobs: | |
bump-version: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ssh-key: ${{ secrets.RELEASE_SSH_KEY }} | |
- uses: actions/setup-node@v4 | |
with: | |
cache: "yarn" | |
node-version-file: ".tool-versions" | |
- name: Setup build dependencies | |
run: | | |
make deps | |
yarn install | |
- name: Configure Git user | |
run: | | |
git config user.name "jocmp" | |
git config user.email "9521010+jocmp@users.noreply.github.com" | |
- name: Bump Version | |
run: | | |
bumpver update --patch --allow-dirty | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |