From 00cff9d81df022aabf62cd8e3bf5f25d78c4e1cd Mon Sep 17 00:00:00 2001 From: Santiago Bernhardt Date: Wed, 2 Nov 2022 09:27:43 +1300 Subject: [PATCH] commit code changes --- entrypoint.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index c3de7b00..919ce1e9 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -197,8 +197,9 @@ then exit 0 fi -echo "$dt: **pushing tag $new to repo $full_name" +echo "EVENT: creating local tag $new" # create local git tag -git tag -f "$new" +git tag -f "$new" || exit 1 +echo "EVENT: pushing tag $new to origin" # push local tag -git push -f origin "$new" \ No newline at end of file +git push -f origin "$new" || exit 1 \ No newline at end of file