Skip to content

Commit 789cabe

Browse files
committed
[ci skip] avoid running git hooks when releasing
1 parent 9705cda commit 789cabe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/release.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fi
2121

2222
packages/update_versions.sh $new_version
2323
git add ./packages
24-
git commit -m "chore: update npm packages versions to $new_version" && git push || true
24+
git commit -m "chore: update npm packages versions to $new_version" --no-verify && git push --no-verify || true
2525

2626
git tag -a "v$new_version" -m "release v$new_version"
27-
git push origin "v$new_version"
27+
git push --no-verify origin "v$new_version"

0 commit comments

Comments
 (0)