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.
--gpg-sign
1 parent 42dd53b commit 643bfdcCopy full SHA for 643bfdc
entrypoint.sh
@@ -20,6 +20,8 @@ if [[ $INPUT_GPG_SIGN == 'true' ]]; then
20
exit 2
21
fi
22
echo "Configuring GPG for signing commits and tags..."
23
+ which gpg | git config --local gpg.program
24
+ git config --local tag.gpgsign true
25
git config --local user.signingkey "${INPUT_GIT_SIGNINGKEY}"
26
27
@@ -45,9 +47,6 @@ if [[ $INPUT_NO_RAISE ]]; then
45
47
CZ_CMD+=('--no-raise' "$INPUT_NO_RAISE")
46
48
49
CZ_CMD+=('bump' '--yes')
-if [[ $INPUT_GPG_SIGN == 'true' ]]; then
- CZ_CMD+=('--gpg-sign')
50
-fi
51
if [[ $INPUT_DRY_RUN == 'true' ]]; then
52
CZ_CMD+=('--dry-run')
53
0 commit comments