Revert changes

This commit is contained in:
Stefan Zweifel 2020-03-14 13:21:42 +01:00
parent 2b6b90e8f1
commit f73d11d461

View File

@ -75,15 +75,13 @@ _tag_commit() {
_push_to_github() { _push_to_github() {
if [ -z "$INPUT_BRANCH" ] if [ -z "$INPUT_BRANCH" ]
then then
git push origin --all --tags # Only add `--tags` option, if `$INPUT_TAGGING_MESSAGE` is set
if [ -n "$INPUT_TAGGING_MESSAGE" ]
# Only add `--tags` option, if `$INPUT_TAGGING_MESSAGE` is set then
# if [ -n "$INPUT_TAGGING_MESSAGE" ] git push origin --tags
# then else
# git push origin --tags git push origin
# else fi
# git push origin
# fi
else else
git push --set-upstream origin "HEAD:$INPUT_BRANCH" --tags git push --set-upstream origin "HEAD:$INPUT_BRANCH" --tags