We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eacacef commit 8792ecdCopy full SHA for 8792ecd
.circleci/config.yml
@@ -200,8 +200,11 @@ jobs:
200
- attach_workspace: *attach_options
201
- run:
202
name: Decrypt Credentials
203
+ # Note: when changing the image, you might have to re-encrypt the credentials with a
204
+ # matching version of openssl.
205
+ # See https://stackoverflow.com/a/43847627/2116927 for more info.
206
command: |
- openssl aes-256-cbc -d -in .circleci/github_token -k "${KEY}" -out ~/github_token
207
+ openssl aes-256-cbc -d -in .circleci/github_token -k "${KEY}" -out ~/github_token -md md5
208
209
name: Deployment to Snapshot
210
0 commit comments