Skip to content

Commit fa2ffd9

Browse files
fix: add force push to package extension workflow (#404)
- Enable force push for version bump branches in package extension workflow - Ensures branch updates work correctly when rebasing or amending commits - Improves reliability of automated packaging process
1 parent 4e27919 commit fa2ffd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/package-extension.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
git commit -m "chore: bump version to v$NEW_VERSION"
7070
7171
# Push the branch
72-
git push origin "$BRANCH_NAME"
72+
git push -f origin "$BRANCH_NAME"
7373
7474
# Create pull request using GitHub CLI
7575
PR_URL=$(gh pr create \

0 commit comments

Comments
 (0)