Trying all the solutions I found
This commit is contained in:
parent
cbc0a40733
commit
1943f7ce0c
1 changed files with 2 additions and 2 deletions
|
@ -14,13 +14,13 @@ sudo: true
|
||||||
deploy:
|
deploy:
|
||||||
# deploy develop to the staging environment
|
# deploy develop to the staging environment
|
||||||
- provider: script
|
- provider: script
|
||||||
script: ./deploy.sh staging
|
script: chmod +x deploy.sh && sh deploy.sh staging
|
||||||
on:
|
on:
|
||||||
branch: dev
|
branch: dev
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
# deploy master to production
|
# deploy master to production
|
||||||
- provider: script
|
- provider: script
|
||||||
script: ./deploy.sh production
|
script: chmod +x deploy.sh && sh deploy.sh production
|
||||||
on:
|
on:
|
||||||
branch: master
|
branch: master
|
||||||
skip_cleanup: true
|
skip_cleanup: true
|
||||||
|
|
Loading…
Reference in a new issue