Skip to content

Update version-bump.yml #4

Update version-bump.yml

Update version-bump.yml #4

Workflow file for this run

name: Package version bump
on:
push:
branches: [master]
workflow_dispatch: {}
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Bump Version
id: bump
uses: Plugily-Projects/version-bump-action@v9
with:
github-token: ${{ secrets.github_token }}
auto-version-bump: true
auto-version-bump-release: true
- name: Print Version
run: "echo 'New Version: ${{steps.bump.outputs.version}}'"