Update docker-multiplatform-tag.yml
This commit is contained in:
parent
ad5d38259c
commit
2a9a6c3562
1 changed files with 2 additions and 2 deletions
|
@ -6,7 +6,7 @@ on:
|
|||
branches:
|
||||
- bigip-server
|
||||
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
|
||||
|
||||
jobs:
|
||||
|
@ -34,7 +34,7 @@ jobs:
|
|||
fi
|
||||
|
||||
# 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"
|
||||
fi
|
||||
|
||||
|
|
Loading…
Reference in a new issue