Skip to content
This repository has been archived by the owner on Dec 7, 2021. It is now read-only.

Commit

Permalink
Fixing broken pull requests due to pw prompt.
Browse files Browse the repository at this point in the history
  • Loading branch information
Robpol86 committed Aug 4, 2016
1 parent 607c639 commit 32aa2a4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ after_success:
- appveyor-artifacts -mi download
- coverage combine
- coveralls
- touch docs/key; chmod 600 docs/key # Secure before storing key data.
- openssl aes-256-cbc -K $encrypted_c89fed6a587d_key -iv $encrypted_c89fed6a587d_iv -in docs/key.enc -out docs/key -d
- eval `ssh-agent -s`; ssh-add docs/key
- eval "$(ssh-agent -s)"; touch docs/key; chmod 0600 docs/key
- openssl aes-256-cbc -d -K "$encrypted_c89fed6a587d_key" -iv "$encrypted_c89fed6a587d_iv" < docs/key.enc > docs/key
&& ssh-add docs/key
- git config --global user.email "[email protected]"
- git config --global user.name "Travis CI"
- git remote set-url origin "[email protected]:$TRAVIS_REPO_SLUG"
- export ${!TRAVIS*} # For commit messages.
- export ${!TRAVIS*}
- tox -e docsV

# Deploy.
Expand Down

0 comments on commit 32aa2a4

Please sign in to comment.