We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gpg.program
1 parent d4f4171 commit 94d316fCopy full SHA for 94d316f
entrypoint.sh
@@ -20,9 +20,11 @@ if [[ $INPUT_GPG_SIGN == 'true' ]]; then
20
exit 2
21
fi
22
echo "Configuring GPG for signing commits and tags..."
23
+ git config --local gpg.program gpg
24
git config --local commit.gpgsign true
25
git config --local tag.gpgsign true
26
git config --local user.signingkey "${INPUT_GIT_SIGNINGKEY}"
27
+ echo "Git GPG program: $(git config --get gpg.program)"
28
echo "Git sign commits?: $(git config --get commit.gpgsign)"
29
echo "Git sign tags?: $(git config --get tag.gpgsign)"
30
0 commit comments