File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -21,11 +21,13 @@ prerequisites/build text
21
21
* .tar binary
22
22
* .gz binary
23
23
* .tgz binary
24
+ * .enc binary
24
25
25
26
# Prevent dev-ops files from making it into the release archives
26
27
.travis.yml export-ignore
27
28
.pullapprove.yml export-ignore
28
29
.gitattributes export-ignore
29
30
.gitignore export-ignore
30
31
developer-scripts export-ignore
31
- codecov.yml export-ignore
32
+ codecov.yml export-ignore
33
+ * .enc export-ignore
Original file line number Diff line number Diff line change @@ -67,6 +67,16 @@ matrix:
67
67
- g++-6
68
68
69
69
before_install :
70
+ - |
71
+ set -o errexit
72
+ if [[ "$TRAVIS_TAG" ]] && [[ "X$TRAVIS_OS_NAME" = "Xlinux" ]] && $TRAVIS_SECURE_ENV_VARS ; then
73
+ openssl aes-256-cbc -K $encrypted_ef4535c39461_key -iv $encrypted_ef4535c39461_iv -in subkey-328B3A0E-secret.asc.enc -out ./subkey-328B3A0E-secret.asc -d
74
+ gpg --allow-secret-key-import --import ./subkey-328B3A0E-secret.asc && rm subkey-328B3A0E-secret.asc
75
+ fi
76
+ set +o errexit
77
+ - unset encrypted_ef4535c39461_key || true
78
+ - unset encrypted_ef4535c39461_iv || true
79
+ - rm subkey-328B3A0E-secret.asc{,.enc} || true
70
80
- |
71
81
set -o errexit
72
82
if [[ $TRAVIS ]] && [[ "X$TRAVIS_OS_NAME" = "Xosx" ]]; then
You can’t perform that action at this time.
0 commit comments