Skip to content

Commit 42dd53b

Browse files
author
Hendry, Adam
committed
fix(entrypoint.sh): remove signing configs
Remove `tag.gpgsign` and `commit.gpgsign` from local Git config.
1 parent a877e09 commit 42dd53b

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

entrypoint.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +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 false
24-
git config --local tag.gpgsign true
2523
git config --local user.signingkey "${INPUT_GIT_SIGNINGKEY}"
26-
echo "Git sign commits?: $(git config --get commit.gpgsign)"
27-
echo "Git sign tags?: $(git config --get tag.gpgsign)"
2824
fi
2925

3026
PIP_CMD=('pip' 'install')

0 commit comments

Comments
 (0)