ci: Replace version test with working regex

This commit is contained in:
Marius 2021-10-18 15:04:48 +02:00 committed by GitHub
parent cd717e580c
commit 21b3de4c71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ jobs:
docker tag tusproject/tusd:$GITHUB_SHA tusproject/tusd:$TAG_NAME
docker push tusproject/tusd:$TAG_NAME
# Create latest tag if we have no pre-release
if [[ $TAG_NAME =~ ^v\d+\.\d+\.\d+$ ]];
if [[ $TAG_NAME =~ ^v[0-9]+\.[0-9]+\.[0-9]+$ ]];
then
docker tag tusproject/tusd:$GITHUB_SHA tusproject/tusd:latest
docker push tusproject/tusd:latest