From 482e3d52b97d3d267976ee0b00e993e6fdb1c38e Mon Sep 17 00:00:00 2001 From: Andrea Bocchieri <58187203+abocchieri@users.noreply.github.com> Date: Mon, 9 Dec 2024 14:54:20 +0100 Subject: [PATCH] back to basic version bumper --- .github/workflows/version-bump.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/version-bump.yml b/.github/workflows/version-bump.yml index 38180ce..f99d287 100644 --- a/.github/workflows/version-bump.yml +++ b/.github/workflows/version-bump.yml @@ -1,27 +1,20 @@ -name: Version Bump +name: Auto Dev Version Bumper on: push: branches: - develop -permissions: - contents: write # Grants necessary write permissions to the token for git push and tag operations - jobs: - bump_version: + version-bump: 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 \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file