1 Commits
v0.1.3 ... main

Author SHA1 Message Date
359044eb21 fix: use type=raw for Docker tags to preserve v prefix
Some checks failed
CI / Release (push) Successful in 1m26s
CI / Lint (push) Successful in 2m41s
CI / Docker Build & Push (push) Failing after 2m42s
CI / Test (push) Successful in 2m45s
CI / Notify (push) Successful in 1s
docker/metadata-action type=semver strips the v prefix, causing
tag mismatch between git tags (v0.1.3) and Docker tags (0.1.3).
Switch to type=raw to pass through the version as-is.
2026-02-22 09:58:45 -05:00

View File

@@ -141,8 +141,7 @@ jobs:
with: with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
tags: | tags: |
type=semver,pattern={{version}},value=${{ needs.release.outputs.version }} type=raw,value=${{ needs.release.outputs.version }}
type=semver,pattern={{major}}.{{minor}},value=${{ needs.release.outputs.version }}
type=raw,value=latest,enable={{is_default_branch}} type=raw,value=latest,enable={{is_default_branch}}
- name: Build and push - name: Build and push