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 48e602a commit 3c08344Copy full SHA for 3c08344
.github/workflows/build_images.yml
@@ -24,7 +24,8 @@ jobs:
24
25
# If this is git tag, use the tag name as a docker tag
26
if [[ $GITHUB_REF == refs/tags/* ]]; then
27
- VERSION=${GITHUB_REF#refs/tags/v}
+ VERSION==${GITHUB_REF/refs\/tags\//}
28
+ #VERSION=${GITHUB_REF#refs/tags/v}
29
fi
30
TAGS="${DOCKER_IMAGE}:${VERSION},${DOCKER_IMAGE}:${SHORTREF}"
31
0 commit comments