Skip to content

Commit

Permalink
added automatic version bumper in develop branch
Browse files Browse the repository at this point in the history
  • Loading branch information
abocchieri committed Dec 9, 2024
1 parent 12b4278 commit 29ddf08
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/version-bump.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Auto Dev Version Bumper

on:
push:
branches:
- develop

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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 29ddf08

Please sign in to comment.