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:
|
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
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue