Skip to content

Commit c8e5428

Browse files
committed
fix: github push script (#13396)
1 parent 7979d82 commit c8e5428

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/cb-publish-step-4-push-to-git.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ if [[ "$PROJECT_NAME" == "TaggedReleaseWithoutE2E" ]] || [[ "$PROJECT_NAME" == "
1313
git push origin "$BRANCH_NAME" --no-verify
1414

1515
# push release tags
16-
git tag --points-at HEAD | xargs git push origin
16+
git tag --points-at HEAD | xargs git push origin --no-verify
1717

1818
# @latest release
1919
elif [[ "$PROJECT_NAME" == "Release" ]]; then
2020
# push release commit
2121
git push origin "$BRANCH_NAME" --no-verify
2222

2323
# push release tags
24-
git tag --points-at HEAD | xargs git push origin
24+
git tag --points-at HEAD | xargs git push origin --no-verify
2525

2626
# fast forward main to release
2727
git fetch origin main

0 commit comments

Comments
 (0)