Merge pull request #474 from gabriel-samfira/fix-image-tag

Get the image tag from supplied ref
This commit is contained in:
Gabriel 2025-08-07 00:13:51 +03:00 committed by GitHub
commit fd9a4d544a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -48,7 +48,7 @@ jobs:
if [ "$GH_REF" == "main" ]; then
IMAGE_TAG="nightly"
else
IMAGE_TAG=$(git describe --tags --match='v[0-9]*' --always)
IMAGE_TAG=$(git describe --tags --match='v[0-9]*' --always ${GH_REF})
fi
docker buildx build \
--provenance=false \