From 0124701ca5b59bff38d5161f7bdb5e3fa7a75259 Mon Sep 17 00:00:00 2001 From: Jonas Forsberg Date: Tue, 18 Apr 2023 14:09:01 +0200 Subject: [PATCH] fixed label links --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 4adb419..7d29427 100644 --- a/Makefile +++ b/Makefile @@ -30,11 +30,11 @@ require_clean_git: build: podman build \ --build-arg VERSION="$(VERSION)" \ - --label org.opencontainers.image.source="https://${REPO}/${IMAGENAME}/src/tag/${VERSION}" \ + --label org.opencontainers.image.source="https://${REPO}/${IMAGENAME}/src/tag/v${VERSION}" \ --label org.opencontainers.image.title="${TITLE}" \ --label org.opencontainers.image.description="${DESC}" \ --label org.opencontainers.image.created="$(shell TZ=UTC date --iso-8601=ns)" \ - --label org.opencontainers.image.url="https://${REPO}/-/packages/container/${IMAGENAME}/${VERSION}" \ + --label org.opencontainers.image.url="https://${REPO}/-/packages/container/${IMAGENAME}/v${VERSION}" \ --label org.opencontainers.image.version="${VERSION}" \ --label org.opencontainers.image.vendor="Jonas Forsberg" \ --tag ${REPO}/${IMAGENAME}:$(VERSION) \