Skip to content

Commit d291ead

Browse files
committed
fix: decode base64-encoded GPG key before importing in CircleCI
Signed-off-by: Marvin Froeder <[email protected]>
1 parent 7ebca9f commit d291ead

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.circleci/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ commands:
9292
- run:
9393
name: 'Configure GPG keys'
9494
command: |
95-
echo -e "$GPG_KEY" | gpg --batch --no-tty --import --yes
95+
echo -e "$GPG_KEY" | base64 -d | gpg --batch --yes --import
9696
nexus-deploy:
9797
steps:
9898
- run:

0 commit comments

Comments
 (0)