File tree 2 files changed +0
-16
lines changed 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change @@ -82,10 +82,6 @@ inputs:
82
82
crazy-max/ghaction-import-gpg)
83
83
required : false
84
84
default : " false"
85
- git_signingkey :
86
- description : >
87
- The UID for the GPG key git will use to sign commits and tags (for git operations). `gpg_sign` must be set to true.
88
- required : false
89
85
debug :
90
86
description : " If true, prints debug output to GitHub Actions stdout."
91
87
required : false
Original file line number Diff line number Diff line change @@ -14,18 +14,6 @@ git config --local pull.rebase true
14
14
echo " Git name: $( git config --get user.name) "
15
15
echo " Git email: $( git config --get user.email) "
16
16
17
- if [[ $INPUT_GPG_SIGN == ' true' ]]; then
18
- if [[ -z $INPUT_GIT_SIGNINGKEY ]]; then
19
- echo ' Missing input "git_signingkey".' >&2
20
- exit 2
21
- fi
22
- echo " Configuring GPG for signing commits and tags..."
23
- echo " which gpg"
24
- which gpg
25
- git config --local commit.gpgsign true
26
- git config --local user.signingkey " ${INPUT_GIT_SIGNINGKEY} "
27
- fi
28
-
29
17
PIP_CMD=(' pip' ' install' )
30
18
if [[ $INPUT_COMMITIZEN_VERSION == ' latest' ]]; then
31
19
PIP_CMD+=(' commitizen' )
You can’t perform that action at this time.
0 commit comments