1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-12-27 20:44:56 +00:00

Move key decryption to before_deploy.

This commit is contained in:
Brenden Matthews 2019-02-24 12:35:44 -05:00
parent 08f7cf0605
commit ef003a6491

View File

@ -132,8 +132,6 @@ matrix:
- os: osx - os: osx
osx_image: xcode10.1 osx_image: xcode10.1
before_install: before_install:
- openssl aes-256-cbc -K $encrypted_38876355cb3e_key -iv $encrypted_38876355cb3e_iv
-in appimage/secret.gpg.enc -out appimage/secret.gpg -d
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then eval "${MATRIX_EVAL}" ; fi - if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then eval "${MATRIX_EVAL}" ; fi
- | - |
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
@ -229,6 +227,8 @@ cache:
- directories: - directories:
- "$HOME/.sonar/cache" - "$HOME/.sonar/cache"
before_deploy: before_deploy:
- openssl aes-256-cbc -K $encrypted_38876355cb3e_key -iv $encrypted_38876355cb3e_iv
-in appimage/secret.gpg.enc -out appimage/secret.gpg -d
- "gpg --import appimage/secret.gpg" - "gpg --import appimage/secret.gpg"
- "./appimage/build.sh" - "./appimage/build.sh"