From 23ca254f87b78f74b64893a143d39ab79d68067a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Schr=C3=B6ter?= Date: Sun, 2 Feb 2025 21:35:18 +0100 Subject: [PATCH] fix manifest creation --- .github/workflows/docker-build-and-push.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/docker-build-and-push.yml b/.github/workflows/docker-build-and-push.yml index f55d604..34d4184 100644 --- a/.github/workflows/docker-build-and-push.yml +++ b/.github/workflows/docker-build-and-push.yml @@ -155,17 +155,17 @@ jobs: if [[ "${GITHUB_REF_TYPE}" == "tag" ]]; then VERSION=${GITHUB_REF#refs/tags/} docker manifest create icereed/paperless-gpt:${VERSION} --amend \ - --annotate icereed/paperless-gpt:${VERSION}-amd64 linux/amd64 \ - --annotate icereed/paperless-gpt:${VERSION}-arm64 linux/arm64 + icereed/paperless-gpt:${VERSION}-amd64 \ + icereed/paperless-gpt:${VERSION}-arm64 docker manifest push --purge icereed/paperless-gpt:${VERSION} docker manifest create icereed/paperless-gpt:latest --amend \ - --annotate icereed/paperless-gpt:${VERSION}-amd64 linux/amd64 \ - --annotate icereed/paperless-gpt:${VERSION}-arm64 linux/arm64 + icereed/paperless-gpt:${VERSION}-amd64 \ + icereed/paperless-gpt:${VERSION}-arm64 docker manifest push --purge icereed/paperless-gpt:latest else docker manifest create icereed/paperless-gpt:unreleased --amend \ - --annotate icereed/paperless-gpt:unreleased-amd64 linux/amd64 \ - --annotate icereed/paperless-gpt:unreleased-arm64 linux/arm64 + icereed/paperless-gpt:unreleased-amd64 \ + icereed/paperless-gpt:unreleased-arm64 docker manifest push --purge icereed/paperless-gpt:unreleased fi \ No newline at end of file