We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2d15e4 commit 0c97e9aCopy full SHA for 0c97e9a
Util/BuildTools/Deploy.sh
@@ -63,6 +63,10 @@ if [[ ${REPOSITORY_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
63
log "Detected tag ${REPOSITORY_TAG}."
64
DEPLOY_NAME=CARLA_${REPOSITORY_TAG}.tar.gz
65
DOCKER_TAG=${REPOSITORY_TAG}
66
+elif [[ ${REPOSITORY_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
67
+ log "Detected tag ${REPOSITORY_TAG}."
68
+ DEPLOY_NAME=CARLA_${REPOSITORY_TAG}.tar.gz
69
+ DOCKER_TAG=${REPOSITORY_TAG}
70
else
71
S3_PREFIX=${S3_PREFIX}/Dev
72
DEPLOY_NAME=$(git log --pretty=format:'%cd_%h' --date=format:'%Y%m%d' -n 1).tar.gz
0 commit comments