From 92c1ed4313189faa92846282f4ce3069309ffe3a Mon Sep 17 00:00:00 2001 From: lamya-rey Date: Mon, 18 Jan 2021 13:42:46 +0100 Subject: [PATCH] :construction_worker: fix name app --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9b75d67..fd45177 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -74,14 +74,14 @@ jobs: - checkout - run: name: Heroku deploy - command: git push https://heroku:$HEROKU_API_KEY@git.heroku.com/$HEROKU_APP_NAME.git origin/main + command: git push https://heroku:$HEROKU_API_KEY@git.heroku.com/devops-final-back-heroku.git HEAD:main - run: name: Smoke test command: | if [[ "$HTTPCODE" -ne 200 ]]; then echo "heroku app not responding, failing deploy" \ exit 1 \ - HTTPCODE=`curl -s -o /dev/null -w "%{http_code}" https://$HEROKU_APP_NAME.herokuapp.com/` + HTTPCODE=`curl -s -o /dev/null -w "%{http_code}" https://devops-final-back-heroku.herokuapp.com/` fi docker-build-and-push: