Remove staging step from production pipeline
This commit is contained in:
parent
cd3bbf0651
commit
002d53c5c5
|
|
@ -73,17 +73,6 @@ aliases:
|
||||||
- npm install --prefix client
|
- npm install --prefix client
|
||||||
- cd client
|
- cd client
|
||||||
- npm run test:unit
|
- npm run test:unit
|
||||||
- &deploy-prod
|
|
||||||
name: deploy to prod on Heroku
|
|
||||||
deployment: prod
|
|
||||||
script:
|
|
||||||
- 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
|
||||||
|
|
@ -106,6 +95,12 @@ aliases:
|
||||||
deployment: stage
|
deployment: stage
|
||||||
script:
|
script:
|
||||||
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/skillbox-stage.git develop:master
|
- git push https://heroku:$HEROKU_API_KEY@git.heroku.com/skillbox-stage.git develop: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
|
||||||
|
|
||||||
pipelines:
|
pipelines:
|
||||||
default:
|
default:
|
||||||
|
|
@ -141,7 +136,6 @@ pipelines:
|
||||||
- step: *jest-test
|
- step: *jest-test
|
||||||
- parallel:
|
- parallel:
|
||||||
- step: *deploy-prod-manual
|
- step: *deploy-prod-manual
|
||||||
- step: *deploy-academy-manual
|
|
||||||
|
|
||||||
custom:
|
custom:
|
||||||
prod:
|
prod:
|
||||||
|
|
@ -151,4 +145,3 @@ pipelines:
|
||||||
- step: *jest-test
|
- step: *jest-test
|
||||||
- parallel:
|
- parallel:
|
||||||
- step: *deploy-prod-manual
|
- step: *deploy-prod-manual
|
||||||
- step: *deploy-academy-manual
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue