diff --git a/.github/workflows/bump-version-release.yaml b/.github/workflows/bump-version-release.yaml index 8fad6eccf..18c185b71 100644 --- a/.github/workflows/bump-version-release.yaml +++ b/.github/workflows/bump-version-release.yaml @@ -98,7 +98,7 @@ jobs: - name: Bump version id: bump-version-snapshot - uses: bakdata/ci-templates/actions/patch-snapshot@feat/new-bumpversion + uses: bakdata/ci-templates/actions/bump-version-snapshot@feat/new-bumpversion with: working-directory: ${{ inputs.working-directory }} test-version: ${{ steps.bump-version.outputs.release-version }} diff --git a/actions/patch-snapshot/action.yaml b/actions/bump-version-snapshot/action.yaml similarity index 94% rename from actions/patch-snapshot/action.yaml rename to actions/bump-version-snapshot/action.yaml index d588e973a..246dadeb9 100644 --- a/actions/patch-snapshot/action.yaml +++ b/actions/bump-version-snapshot/action.yaml @@ -26,7 +26,7 @@ runs: id: bump-version run: | echo "old-version=$(python -c "from configparser import ConfigParser; cfg = ConfigParser(); cfg.read('.bumpversion.cfg'); print(cfg['bumpversion']['current_version'])")" >> "$GITHUB_OUTPUT" - bump2version --allow-dirty patch + bump2version --allow-dirty --no-tag --no-commit patch echo "new-version=$(python -c "from configparser import ConfigParser; cfg = ConfigParser(); cfg.read('.bumpversion.cfg'); print(cfg['bumpversion']['current_version'])")" >> "$GITHUB_OUTPUT" shell: bash working-directory: ${{ inputs.working-directory }}