Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 06fbea8

Browse files
committedDec 4, 2019
fix: usage GPG key from environment
1 parent b297ad3 commit 06fbea8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ jobs:
3030
git config --global user.name "Smartling, Inc."
3131
- run:
3232
name: Import GPG Key
33-
command: gpg --batch --passphrase ${GPG_SIGNING_PASSWORD} --import .circleci/gpg.key.txt
33+
command: |
34+
echo -e $GPG_KEY > .circleci/gpg.key.txt
35+
gpg --batch --passphrase ${GPG_SIGNING_PASSWORD} --import .circleci/gpg.key.txt
3436
- run:
3537
name: Release
3638
command: |

0 commit comments

Comments
 (0)
Please sign in to comment.