Push Tags to Remote Repository

This commit is contained in:
Stefan Zweifel 2020-03-05 20:28:38 +01:00
parent 956a47433b
commit d4a53f1779

View File

@ -62,9 +62,9 @@ _local_commit() {
_push_to_github() { _push_to_github() {
if [ -z "$INPUT_BRANCH" ] if [ -z "$INPUT_BRANCH" ]
then then
git push origin git push origin --tags
else else
git push --set-upstream origin "HEAD:$INPUT_BRANCH" git push --set-upstream origin "HEAD:$INPUT_BRANCH" --tags
fi fi
} }