From 6057956931c563c8c2c57b31f96a3f82fb491afe Mon Sep 17 00:00:00 2001 From: Stefan Zweifel Date: Tue, 20 Aug 2019 20:51:00 +0200 Subject: [PATCH] Fix Typo --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index b334a5d..df9287d 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -6,5 +6,5 @@ git config --global user.name "GitHub Actions" git add -A git status -git commit -m "$INPUT_COMMIT_MESSAGE" --author="$INPUT_COMMIT_AUTHOR_NAME <$INPUTCOMMIT_AUTHOR_EMAIL>" || echo "No changes found. Nothing to commit." +git commit -m "$INPUT_COMMIT_MESSAGE" --author="$INPUT_COMMIT_AUTHOR_NAME <$INPUT_COMMIT_AUTHOR_EMAIL>" || echo "No changes found. Nothing to commit." git push -u origin HEAD