Trying all the solutions I found

This commit is contained in:
Norbi Peti 2017-06-28 17:52:39 +02:00 committed by GitHub
parent cbc0a40733
commit 1943f7ce0c

View file

@ -14,13 +14,13 @@ sudo: true
deploy:
# deploy develop to the staging environment
- provider: script
script: ./deploy.sh staging
script: chmod +x deploy.sh && sh deploy.sh staging
on:
branch: dev
skip_cleanup: true
# deploy master to production
- provider: script
script: ./deploy.sh production
script: chmod +x deploy.sh && sh deploy.sh production
on:
branch: master
skip_cleanup: true