diff --git a/.travis/deploy.sh b/.ci/deploy.sh similarity index 98% rename from .travis/deploy.sh rename to .ci/deploy.sh index 7ca407f5..ea4a9257 100644 --- a/.travis/deploy.sh +++ b/.ci/deploy.sh @@ -85,7 +85,7 @@ ENCRYPTED_KEY_VAR="encrypted_${ENCRYPTION_LABEL}_key" ENCRYPTED_IV_VAR="encrypted_${ENCRYPTION_LABEL}_iv" ENCRYPTED_KEY=${!ENCRYPTED_KEY_VAR} ENCRYPTED_IV=${!ENCRYPTED_IV_VAR} -openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in ../.travis/deploy_key.enc -out ../deploy_key -d +openssl aes-256-cbc -K $ENCRYPTED_KEY -iv $ENCRYPTED_IV -in ../.ci/deploy_key.enc -out ../deploy_key -d chmod 600 ../deploy_key eval `ssh-agent -s` ssh-add ../deploy_key diff --git a/.travis.yml b/.travis.yml index b3e5642d..90ad1b9a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ before_install: install: - pip install -r requirements.txt -script: bash ./.travis/deploy.sh +script: bash ./.ci/deploy.sh after_script: - sleep 10 # helps travis finish logging diff --git a/.travis/deploy_key.enc b/.travis/deploy_key.enc deleted file mode 100644 index 7ab20945..00000000 Binary files a/.travis/deploy_key.enc and /dev/null differ