Skip to content

tentative fix #3

tentative fix #3 #10

Workflow file for this run

name: Version Bump
on:
push:
branches:
- develop
permissions:
contents: write # Grants necessary write permissions to the token for git push and tag operations
jobs:
bump_version:
runs-on: ubuntu-latest
steps:
# Step 1: Checkout repository with GITHUB_TOKEN
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }} # Ensures git push and tag operations are authenticated
# Step 2: Run the auto-dev-version-bumper action in Docker
- name: Run auto-dev-version-bumper
uses: LorenzoMugnai/auto-dev-version-bumper@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Pass GITHUB_TOKEN explicitly