From ce52cbae6d53cbf666637b30a03bb139a0e9fa21 Mon Sep 17 00:00:00 2001 From: Henri Boulnois Date: Wed, 3 Nov 2021 15:08:50 +0100 Subject: [PATCH] :construction_worker: update with new heroku app --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f16f3cf..4db082d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -61,11 +61,11 @@ jobs: - checkout - run: name: Heroku Deploy - command: git push https://heroku:$HEROKU_KEY@git.heroku.com//damp-sea-12569.git HEAD:main + command: git push https://heroku:$HEROKU_KEY@git.heroku.com/shielded-shelf-71885.git HEAD:main - run: name: Smoke Test command: | - HTTPCODE=`curl -s -o /dev/null -w "%{http_code}" https://damp-sea-12569.herokuapp.com/` + HTTPCODE=`curl -s -o /dev/null -w "%{http_code}" https://shielded-shelf-71885.herokuapp.com/` if [ "$HTTPCODE" -ne 200 ];then echo "heroku app not responding, failing deploy" exit 1