From a1d37b4efc7709445a98f5864c19125e7c47a2db Mon Sep 17 00:00:00 2001 From: Travis Nielsen Date: Mon, 26 Jul 2021 17:26:15 -0600 Subject: [PATCH] build: promote the build with tag suffix if needed The beta releases should have the tag suffx included in the helm chart and release version tags. Signed-off-by: Travis Nielsen --- tests/scripts/build-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/scripts/build-release.sh b/tests/scripts/build-release.sh index 9dd8fb6a3ff3..2c63efa44cd7 100755 --- a/tests/scripts/build-release.sh +++ b/tests/scripts/build-release.sh @@ -23,7 +23,7 @@ function publish() { function promote() { # automatically promote the master builds echo "Promoting from branch ${BRANCH_NAME}" - build/run make -C build/release promote BRANCH_NAME=${BRANCH_NAME} CHANNEL=${CHANNEL} AWS_ACCESS_KEY_ID=${AWS_USR} AWS_SECRET_ACCESS_KEY=${AWS_PSW} + build/run make -C build/release promote BRANCH_NAME=${BRANCH_NAME} TAG_WITH_SUFFIX=${TAG_WITH_SUFFIX} CHANNEL=${CHANNEL} AWS_ACCESS_KEY_ID=${AWS_USR} AWS_SECRET_ACCESS_KEY=${AWS_PSW} } #############