Skip to content

Commit

Permalink
ci: use matching openssl key digest
Browse files Browse the repository at this point in the history
  • Loading branch information
filipesilva authored and kyliau committed Jun 10, 2019
1 parent ea3d485 commit 032409d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,8 +200,11 @@ jobs:
- attach_workspace: *attach_options
- run:
name: Decrypt Credentials
# Note: when changing the image, you might have to re-encrypt the credentials with a
# matching version of openssl.
# See https://stackoverflow.com/a/43847627/2116927 for more info.
command: |
openssl aes-256-cbc -d -in .circleci/github_token -k "${KEY}" -out ~/github_token
openssl aes-256-cbc -d -in .circleci/github_token -k "${KEY}" -out ~/github_token -md md5
- run:
name: Deployment to Snapshot
command: |
Expand Down

0 comments on commit 032409d

Please sign in to comment.