From f157cb26b3c1126f5521e6fd0698c5d404af918c Mon Sep 17 00:00:00 2001 From: ohakutsu Date: Thu, 10 Oct 2024 11:02:13 +0900 Subject: [PATCH] Fix custom commit message --- actions/publish/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/publish/action.yml b/actions/publish/action.yml index aac48dc..2d17d62 100644 --- a/actions/publish/action.yml +++ b/actions/publish/action.yml @@ -35,7 +35,7 @@ runs: if ! git diff --staged --exit-code --quiet; then git config --global user.name 'github-actions[bot]' git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com' - git commit -m ${{ inputs.commit-message }} + git commit -m '${{ inputs.commit-message }}' git push fi shell: bash