Disable if-condition

This commit is contained in:
Stefan Zweifel 2019-10-26 13:58:34 +02:00
parent 5de23163f2
commit d6493da30b

View File

@ -30,12 +30,14 @@ then
# Switch to branch from current Workflow run
git checkout $INPUT_BRANCH
if [ -z ${INPUT_FILE_PATTERN+x} ];
then
git add .
else
git add $INPUT_FILE_PATTERN
fi
# if [ -z ${INPUT_FILE_PATTERN+x} ];
# then
# git add .
# else
# git add $INPUT_FILE_PATTERN
# fi
git add $INPUT_FILE_PATTERN
git commit -m "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>"