Add "latest-including-rc" tag for Docker (#1193)

This commit is contained in:
Tobias 2018-10-25 16:44:04 +02:00 committed by Roy Keene
commit 339afd7678

View file

@ -12,9 +12,9 @@ fi
tags=()
if [[ "${TRAVIS_TAG}" =~ 'RC' ]]; then
tags+=("$TRAVIS_TAG")
tags+=("$TRAVIS_TAG" latest-including-rc)
elif [ -n "$TRAVIS_TAG" ]; then
tags+=("$TRAVIS_TAG" latest)
tags+=("$TRAVIS_TAG" latest latest-including-rc)
elif [ -n "$TRAVIS_BRANCH" ]; then
tags+=("$TRAVIS_BRANCH")
fi