Skip to content

Commit de4b095

Browse files
author
Hendry, Adam
committed
fix(entrypoint.sh): add commit.gpgsign
Remove specifying `gpg.program` and add `commit.gpgsign` back.
1 parent 643bfdc commit de4b095

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-
which gpg | git config --local gpg.program
23+
git config --local commit.gpgsign true
2424
git config --local tag.gpgsign true
2525
git config --local user.signingkey "${INPUT_GIT_SIGNINGKEY}"
2626
fi

0 commit comments

Comments
 (0)