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
This commit is contained in:
Russel Waters 2021-04-27 07:58:50 -07:00 committed by GitHub
commit c1ecd9680c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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