Only deploy if on master

This commit is contained in:
Armin Ronacher 2015-12-24 00:46:11 +01:00
parent 7ad9333df7
commit 46c71b7b19
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ install:
- "pip install git+https://github.com/lektor/lektor#egg=Lektor"
script:
- "lektor build"
- "if [ ! -z \"$LEKTOR_DEPLOY_KEY\" ]; then lektor deploy production; fi"
- "if [ ! -z \"$LEKTOR_DEPLOY_KEY\" ] && [ \"$TRAVIS_BRANCH\" == \"master\" ]; then lektor deploy production; fi"
cache:
directories:
- $HOME/.cache/pip