From 426984ceabf1b944079d5e087c91781a58fde38b Mon Sep 17 00:00:00 2001 From: Jonathan Belcher Date: Mon, 30 Sep 2019 21:39:59 -0400 Subject: [PATCH] Fixes a copy pasta issue (#1606) --- .github/actions/deploy/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/deploy/entrypoint.sh b/.github/actions/deploy/entrypoint.sh index 32bda4b4b..f519f9ba5 100755 --- a/.github/actions/deploy/entrypoint.sh +++ b/.github/actions/deploy/entrypoint.sh @@ -8,13 +8,13 @@ case $BRANCH in "refs/heads/develop") COMMIT_BRANCH='webapp-develop' - WEB_APP_URL='https://simplenote.go-vip.co' + WEB_APP_URL='https://simplenote-develop.go-vip.net' APP_ENGINE_URL='https://develop.simplenote.com' ;; "refs/heads/master") COMMIT_BRANCH='webapp' - WEB_APP_URL='https://simplenote-develop.go-vip.net' + WEB_APP_URL='https://simplenote.go-vip.co' APP_ENGINE_URL='https://app.simplenote.com' ;;