Skip to content

Commit

Permalink
commit code changes
Browse files Browse the repository at this point in the history
  • Loading branch information
sbe-arg committed Nov 1, 2022
1 parent 9e66be4 commit 00cff9d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
git push -f origin "$new" || exit 1

0 comments on commit 00cff9d

Please sign in to comment.