fix(ci): use PAT_TOKEN for tag push in release workflow#193
Merged
Conversation
The 'Create and push tag' step used the default GITHUB_TOKEN from actions/checkout, which lacks push permission. This caused a 403 error when the workflow_dispatch trigger attempted to create and push a tag. Use the PAT_TOKEN secret (already used for the changelog commit) to authenticate the tag push. Signed-off-by: Carlo van Driesten <carlo.van-driesten@bmw.de>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The release workflow fails with a 403 when triggered via
workflow_dispatch. The "Create and push tag" step uses the defaultGITHUB_TOKENfromactions/checkout, which lacks push permission to create and push tags.Failed run: https://github.com/lichtblick-suite/asam-osi-converter/actions/runs/25326002385
Fix
Authenticate the git remote with
PAT_TOKENbefore pushing the tag — the same pattern already used later in the workflow for the changelog commit (line 76).Changes
git remote set-url originwithPAT_TOKENto the "Create and push tag" stepTesting
This is a CI-only change. Verification requires re-running the
workflow_dispatchrelease trigger after merge.