Skip to content

Commit 0c97e9a

Browse files
committed
Enable deploy of four number version
1 parent d2d15e4 commit 0c97e9a

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Util/BuildTools/Deploy.sh

+4
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,10 @@ if [[ ${REPOSITORY_TAG} =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then
6363
log "Detected tag ${REPOSITORY_TAG}."
6464
DEPLOY_NAME=CARLA_${REPOSITORY_TAG}.tar.gz
6565
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}
6670
else
6771
S3_PREFIX=${S3_PREFIX}/Dev
6872
DEPLOY_NAME=$(git log --pretty=format:'%cd_%h' --date=format:'%Y%m%d' -n 1).tar.gz

0 commit comments

Comments
 (0)