From c045cd21a1d58a0d39b441f729ad12c8062da155 Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 11 Jul 2022 14:20:12 +0200 Subject: [PATCH] Added git output path --- entrypoint.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/entrypoint.sh b/entrypoint.sh index 21f3ab4..c020619 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -23,6 +23,7 @@ if [[ `git status --porcelain` ]]; then # Calling method to configure the git environemnt _git_setup # Commit and push changes back + git add "$INPUT_OUTPUT_PATH" git commit -am "$INPUT_COMMIT_MESSAGE" --author="$GITHUB_ACTOR <$GITHUB_ACTOR@users.noreply.github.com>" git push origin echo "Changes pushed successfully."