We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8ea974 commit b8972fdCopy full SHA for b8972fd
actions/publish/action.yml
@@ -35,7 +35,9 @@ runs:
35
if ! git diff --staged --exit-code --quiet; then
36
git config --global user.name 'github-actions[bot]'
37
git config --global user.email '41898282+github-actions[bot]@users.noreply.github.com'
38
- git commit -m ${{ inputs.commit-message }}
+ git commit -m "${COMMIT_MESSAGE}"
39
git push
40
fi
41
shell: bash
42
+ env:
43
+ COMMIT_MESSAGE: ${{ inputs.commit-message }}
0 commit comments