Skip to content

Commit 9c830e5

Browse files
author
Hendry, Adam
committed
ci(test): print which gpg is running
1 parent c50654a commit 9c830e5

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

entrypoint.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@ if [[ $INPUT_GPG_SIGN == 'true' ]]; then
2020
exit 2
2121
fi
2222
echo "Configuring GPG for signing commits and tags..."
23-
echo "gpg -K"
24-
gpg -K
25-
gpg --list-secret-keys --keyid-format=LONG
26-
echo "Git setup..."
23+
echo "which gpg"
24+
which gpg
2725
git config --local commit.gpgsign true
2826
git config --local user.signingkey "${INPUT_GIT_SIGNINGKEY}"
2927
fi

0 commit comments

Comments
 (0)