From 9d29fecc2313ac5eba8690cc765f60c94601099d Mon Sep 17 00:00:00 2001 From: esensar Date: Mon, 22 Oct 2018 19:55:59 +0200 Subject: [PATCH] Fix test deployment for bitbucket --- bitbucket-pipelines.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index e7f984c..cb2a008 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -15,7 +15,7 @@ pipelines: deployment: staging # set to test, staging or production # trigger: manual # uncomment to have a manual step script: - - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git HEAD + - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git master develop: - step: # set HEROKU_API_KEY and HEROKU_APP_NAME environment variables @@ -24,5 +24,5 @@ pipelines: deployment: test # set to test, staging or production # trigger: manual # uncomment to have a manual step script: - - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME_TEST.git HEAD + - git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME_TEST.git master