Skip to content

Commit

Permalink
add auto version bump github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
TamimiGitHub committed Apr 2, 2024
1 parent 1a91210 commit 026147f
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/bumpversion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: "Bump Version"
on:
push:
branches: [ main ]

jobs:
bump-version:
name: 'Bump Version on master'
runs-on: ubuntu-latest

steps:
- name: 'Checkout source code'
uses: 'actions/checkout@v2'
with:
ref: ${{ github.ref }}

- name: 'Automated Version Bump'
id: version-bump
uses: 'phips28/gh-action-bump-version@master'
with:
tag-prefix: 'v'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 026147f

Please sign in to comment.