Skip to content

Commit

Permalink
Also extract secrets during nightly test release
Browse files Browse the repository at this point in the history
  • Loading branch information
mvriel committed Sep 23, 2018
1 parent 277a592 commit a8c528e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Expand Up @@ -93,6 +93,11 @@ jobs:
php: 7.1
env:
- VERSION=$(echo $TRAVIS_TAG | cut -c 2-10)
before_install: |
if [[ "$TRAVIS_PULL_REQUEST_SLUG" == "" || "$TRAVIS_PULL_REQUEST_SLUG" == "$TRAVIS_REPO_SLUG" ]];then
openssl aes-256-cbc -K $encrypted_f23adc84ec09_key -iv $encrypted_f23adc84ec09_iv -in .travis/secrets.tar.enc -out .travis/secrets.tar -d && \
tar xvf .travis/secrets.tar -C .travis
fi;
script:
- echo "${VERSION}" > VERSION
- git config --global user.email "builds@travis-ci.com"
Expand Down

0 comments on commit a8c528e

Please sign in to comment.