Skip to content

Commit

Permalink
ci: fix base64 decode in release script
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Mucha <[email protected]>
  • Loading branch information
drptbl committed Mar 20, 2021
1 parent b2d6061 commit 421695c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
git config user.name $GIT_USER
git config user.email $GIT_EMAIL
mkdir -p ~/.gnupg/
printf $GPG_KEY | base64 --decode > ~/.gnupg/private.key
printf $GPG_KEY | base64 -d > ~/.gnupg/private.key
gpg --import ~/.gnupg/private.key
git config commit.gpgsign true
git config user.signingkey $GIT_SIGNING_KEY
Expand Down

0 comments on commit 421695c

Please sign in to comment.