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:
parent
0a9c28e07a
commit
c1ecd9680c
1 changed files with 2 additions and 2 deletions
|
|
@ -6,9 +6,9 @@ scripts="$PWD/ci"
|
||||||
TRAVIS_BRANCH=$(git branch | cut -f2 -d' ')
|
TRAVIS_BRANCH=$(git branch | cut -f2 -d' ')
|
||||||
tags=()
|
tags=()
|
||||||
if [ -n "$TRAVIS_TAG" ]; then
|
if [ -n "$TRAVIS_TAG" ]; then
|
||||||
tags+=("$TRAVIS_TAG" latest)
|
tags+=("$TRAVIS_TAG")
|
||||||
if [[ "$GITHUB_WORKFLOW" = "Beta" || "$GITHUB_WORKFLOW" = "Test" ]]; then
|
if [[ "$GITHUB_WORKFLOW" = "Beta" || "$GITHUB_WORKFLOW" = "Test" ]]; then
|
||||||
tags+=(latest-including-rc)
|
tags+=(latest latest-including-rc)
|
||||||
fi
|
fi
|
||||||
elif [ -n "$TRAVIS_BRANCH" ]; then
|
elif [ -n "$TRAVIS_BRANCH" ]; then
|
||||||
TRAVIS_TAG=$TRAVIS_BRANCH
|
TRAVIS_TAG=$TRAVIS_BRANCH
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue