From 620eb60d2e49f164c90fccdfa1fdbff0396e78a8 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 b3b6db9d..60e3b54a 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -238,8 +238,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