From 5c31443076e53a6645734e82dc8821fa34da96e0 Mon Sep 17 00:00:00 2001 From: Conrad Date: Tue, 6 Oct 2020 16:41:01 +0200 Subject: [PATCH] Testing new file pattern --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index c417913..3768ffb 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -39,7 +39,7 @@ then _git_setup echo "Commiting and pushing changes..." # Add changes to git - git add "${INPUT_FILE_PATTERN}" || echo "Problem adding your files with pattern ${INPUT_FILE_PATTERN}" + git add $INPUT_FILE_PATTERN || echo "Problem adding your files with pattern ${INPUT_FILE_PATTERN}" # Commit and push changes back git commit -m "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>" ${INPUT_COMMIT_OPTIONS:+"$INPUT_COMMIT_OPTIONS"} git push origin