Add dev deployment step to all branches
This commit is contained in:
parent
38f0b64d96
commit
e340c91a12
|
|
@ -63,12 +63,19 @@ aliases:
|
||||||
deployment: prod
|
deployment: prod
|
||||||
script:
|
script:
|
||||||
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/skillbox-prod.git HEAD:master
|
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/skillbox-prod.git HEAD:master
|
||||||
|
- &deploy-dev
|
||||||
|
name: deploy to dev on Heroku
|
||||||
|
deployment: dev
|
||||||
|
trigger: manual
|
||||||
|
script:
|
||||||
|
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/skillbox-dev.git HEAD:master
|
||||||
|
|
||||||
pipelines:
|
pipelines:
|
||||||
default:
|
default:
|
||||||
- step: *unittest-python
|
- step: *unittest-python
|
||||||
- step: *cypress-test
|
- step: *cypress-test
|
||||||
- step: *jest-test
|
- step: *jest-test
|
||||||
|
- step: *deploy-dev
|
||||||
|
|
||||||
branches:
|
branches:
|
||||||
master:
|
master:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue