From 38f0b64d96c3ef415b95235fc3b4afeb8908d413 Mon Sep 17 00:00:00 2001 From: Ramon Wenger Date: Tue, 7 Apr 2020 11:28:47 +0200 Subject: [PATCH] Add deployment info to pipelines config --- bitbucket-pipelines.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index f79eaf72..5ac8a2e9 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -60,6 +60,7 @@ aliases: - 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 @@ -81,6 +82,7 @@ pipelines: - step: *jest-test - step: name: deploy to stage on Heroku + deployment: stage script: - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/skillbox-stage.git develop:master