From 7b68d97e07462a853c87142db6407eb73e125b1b Mon Sep 17 00:00:00 2001 From: pvincent Date: Fri, 23 May 2025 10:22:43 +0400 Subject: [PATCH] semver_git_tag --no-verify --- tools/semver_git_tag | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/semver_git_tag b/tools/semver_git_tag index 093a0bb..e68e014 100755 --- a/tools/semver_git_tag +++ b/tools/semver_git_tag @@ -59,7 +59,7 @@ current_branch=$(git rev-parse --abbrev-ref HEAD) push_needed=$(git rev-list --branches --not --remotes | wc -l) if [[ $push_needed -ne 0 ]]; then echo 'git push needed' - git push --set-upstream origin "$current_branch" + git push --set-upstream origin "$current_branch" --no-verify echo 'git push done' echo '-------------' fi @@ -146,5 +146,5 @@ git add ${GIT_ROOT_FOLDER}/.semver_git_tag echo "tagging as $TAG ..." git commit -am "tagged as ${TAG}" git tag $TAG -git push origin "$current_branch" --tags +git push origin "$current_branch" --tags --no-verify echo "done"