SK-3002 Fix release workflow: v3 branch/path ambiguity#369
Merged
Conversation
…ambiguity The Commit changes step ran 'git checkout v3'. Since the repo now contains a v3/ directory, git could not disambiguate the 'v3' branch from the 'v3' path and failed with: fatal: 'v3' could be both a local file and a tracking branch. Use 'git switch' instead, which only operates on branches. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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 (
beta/public) failed in the Commit changes step:Root cause: the step ran
git checkout ${{ env.branch_name }}(i.e.git checkout v3). Because the repo now contains av3/directory (see thegit add v3/pom.xmlline right below), the argumentv3is ambiguous between the branchv3and the pathv3/, so git bails out.Fix
Use
git switchinstead ofgit checkoutin.github/workflows/shared-build-and-deploy.yml.git switchonly ever operates on branches, so the branch/path collision cannot occur.The
git push origin ${{ env.branch_name }}lines are unaffected — push refspecs are not ambiguous with paths.🤖 Generated with Claude Code