Merge pull request #54 from stefanzweifel/hotfix/optional-branch-push

Fix: Push branch to repository if no branch name is given and no tagging message is set
This commit is contained in:
Stefan Zweifel 2020-03-14 13:34:39 +01:00 committed by GitHub
commit 7659782c71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,13 +67,22 @@ _tag_commit() {
if [ -n "$INPUT_TAGGING_MESSAGE" ] if [ -n "$INPUT_TAGGING_MESSAGE" ]
then then
git tag -a "$INPUT_TAGGING_MESSAGE" -m "$INPUT_TAGGING_MESSAGE" git tag -a "$INPUT_TAGGING_MESSAGE" -m "$INPUT_TAGGING_MESSAGE"
else
echo " No tagging message supplied. No tag will be added."
fi fi
} }
_push_to_github() { _push_to_github() {
if [ -z "$INPUT_BRANCH" ] if [ -z "$INPUT_BRANCH" ]
then then
git push origin --tags # Only add `--tags` option, if `$INPUT_TAGGING_MESSAGE` is set
if [ -n "$INPUT_TAGGING_MESSAGE" ]
then
git push origin --tags
else
git push origin
fi
else else
git push --set-upstream origin "HEAD:$INPUT_BRANCH" --tags git push --set-upstream origin "HEAD:$INPUT_BRANCH" --tags
fi fi