Add manual prod deploy trigger
This commit is contained in:
parent
32ab006abe
commit
f9887a3105
|
|
@ -63,6 +63,12 @@ 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-prod-manual
|
||||||
|
name: deploy to prod on Heroku
|
||||||
|
deployment: prod
|
||||||
|
trigger: manual
|
||||||
|
script:
|
||||||
|
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/skillbox-prod.git HEAD:master
|
||||||
- &deploy-dev
|
- &deploy-dev
|
||||||
name: deploy to dev on Heroku
|
name: deploy to dev on Heroku
|
||||||
deployment: dev
|
deployment: dev
|
||||||
|
|
@ -82,6 +88,7 @@ pipelines:
|
||||||
- step: *unittest-python
|
- step: *unittest-python
|
||||||
- step: *cypress-test
|
- step: *cypress-test
|
||||||
- step: *jest-test
|
- step: *jest-test
|
||||||
|
- step: *deploy-prod-manual
|
||||||
|
|
||||||
develop:
|
develop:
|
||||||
- step: *unittest-python
|
- step: *unittest-python
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue