diff --git a/Util/BuildTools/Deploy.sh b/Util/BuildTools/Deploy.sh index bf8f7caa85a..d0cd8f6e3b3 100755 --- a/Util/BuildTools/Deploy.sh +++ b/Util/BuildTools/Deploy.sh @@ -63,6 +63,10 @@ if [[ ${REPOSITORY_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then log "Detected tag ${REPOSITORY_TAG}." DEPLOY_NAME=CARLA_${REPOSITORY_TAG}.tar.gz DOCKER_TAG=${REPOSITORY_TAG} +elif [[ ${REPOSITORY_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; then + log "Detected tag ${REPOSITORY_TAG}." + DEPLOY_NAME=CARLA_${REPOSITORY_TAG}.tar.gz + DOCKER_TAG=${REPOSITORY_TAG} else S3_PREFIX=${S3_PREFIX}/Dev DEPLOY_NAME=$(git log --pretty=format:'%cd_%h' --date=format:'%Y%m%d' -n 1).tar.gz