From c1ecd9680c8014bae4a4d96b814ccaa69c004c93 Mon Sep 17 00:00:00 2001 From: Russel Waters <6511720+argakiig@users.noreply.github.com> Date: Tue, 27 Apr 2021 07:58:50 -0700 Subject: [PATCH] stop deploying live on latest (#3183) closes #3182 This change would stop deploying docker tag latest on live, instead requiring a version tag, which is already deployed to dockerhub --- ci/actions/linux/deploy-docker.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/actions/linux/deploy-docker.sh b/ci/actions/linux/deploy-docker.sh index 06e1723c..1dbc97fa 100755 --- a/ci/actions/linux/deploy-docker.sh +++ b/ci/actions/linux/deploy-docker.sh @@ -6,9 +6,9 @@ scripts="$PWD/ci" TRAVIS_BRANCH=$(git branch | cut -f2 -d' ') tags=() if [ -n "$TRAVIS_TAG" ]; then - tags+=("$TRAVIS_TAG" latest) + tags+=("$TRAVIS_TAG") if [[ "$GITHUB_WORKFLOW" = "Beta" || "$GITHUB_WORKFLOW" = "Test" ]]; then - tags+=(latest-including-rc) + tags+=(latest latest-including-rc) fi elif [ -n "$TRAVIS_BRANCH" ]; then TRAVIS_TAG=$TRAVIS_BRANCH