Skip to content

Commit

Permalink
added version bumper in develop
Browse files Browse the repository at this point in the history
  • Loading branch information
abocchieri committed Dec 9, 2024
1 parent 12b4278 commit d01d445
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/version_bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# .github/workflows/version_bump.yml

name: Version Bump

on:
push:
branches:
- develop

permissions:
contents: write

jobs:
version-bump:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Run auto-dev-version-bumper
uses: LorenzoMugnai/auto-dev-version-bumper@v1
with:
dev_suffix: "-dev"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit d01d445

Please sign in to comment.