Skip to content

Commit a877e09

Browse files
author
Hendry, Adam
committed
fix(entrypoint.sh): remove signing commits
Only sign tags. It may be that `commitizen` only supports signing tags. See: commitizen-tools/commitizen#616
1 parent 0d6bd3f commit a877e09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ if [[ $INPUT_GPG_SIGN == 'true' ]]; then
2020
exit 2
2121
fi
2222
echo "Configuring GPG for signing commits and tags..."
23-
git config --local commit.gpgsign true
23+
git config --local commit.gpgsign false
2424
git config --local tag.gpgsign true
2525
git config --local user.signingkey "${INPUT_GIT_SIGNINGKEY}"
2626
echo "Git sign commits?: $(git config --get commit.gpgsign)"

0 commit comments

Comments
 (0)