We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8ac52 commit 47afaf0Copy full SHA for 47afaf0
.github/workflows/trigger_new_builds.yml
@@ -33,7 +33,7 @@ jobs:
33
# Calculate current image version
34
# If the branch has has X.Y-xxxxx format, use it as docker tag. Else, use "dev" image (master branch).
35
tag=dev
36
- if [[ ${{ env.GITHUB_REF_SLUG }} =~ \d+\.\d+\-\w+ ]]; then
+ if [[ "${{ env.GITHUB_REF_SLUG }}" =~ [0-9]+\.[0-9]+\-[a-z]+ ]]; then
37
tag=${{ env.GITHUB_REF_SLUG }}
38
fi
39
echo "LOG: docker tag: $tag"
0 commit comments