From 108764fc516f42823488b5d4468d9faa8bf2f0d1 Mon Sep 17 00:00:00 2001 From: Max Weiss Date: Thu, 29 Apr 2021 15:01:38 -0700 Subject: [PATCH] Test BuildBot tag push with hardcoded values --- buildbot/buildbot_steps.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/buildbot/buildbot_steps.sh b/buildbot/buildbot_steps.sh index 3af5d28..bfa77be 100755 --- a/buildbot/buildbot_steps.sh +++ b/buildbot/buildbot_steps.sh @@ -174,10 +174,8 @@ function tag_head_and_push() { return 1 fi - - git tag -a "g_$(git rev-parse HEAD)" HEAD -m "BuildBot: tag commit for release $(git rev-parse HEAD)" || return 2 - git push --tags "$remote" "$branch" + git push --tags origin master if [ $? -ne 0 ]; then >&2 echo 'Error during attempted git push of new tag' return 3