Update docker-multiplatform-tag.yml

This commit is contained in:
Bill Church 2024-08-22 14:03:09 -04:00 committed by GitHub
parent ad5d38259c
commit 2a9a6c3562
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -6,7 +6,7 @@ on:
branches: branches:
- bigip-server - bigip-server
tags: tags:
- 'v[0-9]+.[0-9]+.[0-9]+' - 'v[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}'
workflow_dispatch: # Allows manual triggering from the GitHub UI workflow_dispatch: # Allows manual triggering from the GitHub UI
jobs: jobs:
@ -34,7 +34,7 @@ jobs:
fi fi
# If the VERSION looks like a version number, also tag as 'latest' # If the VERSION looks like a version number, also tag as 'latest'
if [[ $VERSION =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]]; then if [[ $VERSION =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
TAGS="$TAGS,${DOCKER_IMAGE}:latest" TAGS="$TAGS,${DOCKER_IMAGE}:latest"
fi fi