From d6e7be819eedce5c082644b48f335c9dbe3efdab Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 7 Dec 2019 16:35:15 -0800 Subject: [PATCH] tweek ednpoint and update releases to no longer push static html file --- script/build_release | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/script/build_release b/script/build_release index 909cebb0..5609797b 100755 --- a/script/build_release +++ b/script/build_release @@ -10,7 +10,7 @@ if [[ "${TYPE}" == "dev" ]]; then elif [[ "${TYPE}" == "pr" ]]; then BOOT_DOMAIN="test.com" elif [[ "${TYPE}" == "rc" ]]; then - BOOT_DOMAIN="staging.boot.netboot.xyz/${TRAVIS_TAG}" + BOOT_DOMAIN="staging.boot.netboot.xyz/$(cat version.txt)-RC" elif [[ "${TYPE}" == "release" ]]; then BOOT_DOMAIN="staging.boot.netboot.xyz/$(cat version.txt)" fi @@ -53,5 +53,4 @@ if [[ "${TYPE}" == "release" ]] || [[ "${TYPE}" == "rc" ]]; then fi mkdir -p s3out-latest cp -r buildout/* s3out-latest/ - cp script/index.html s3out-latest/ fi