From 54c562f054135ea454ff146aff87864fcaf643e5 Mon Sep 17 00:00:00 2001 From: elseif Date: Thu, 16 Jul 2026 07:00:23 +0800 Subject: [PATCH] Simplify multi arch manifest creation Removed unnecessary output of JSON file contents before creating the multi-architecture manifest. Signed-off-by: elseif --- .github/workflows/build_docker.yml | 4 ---- 1 file changed, 4 deletions(-) diff --git a/.github/workflows/build_docker.yml b/.github/workflows/build_docker.yml index a840d59..95d0bff 100644 --- a/.github/workflows/build_docker.yml +++ b/.github/workflows/build_docker.yml @@ -197,12 +197,8 @@ jobs: - name: Create multi arch manifest run: | - cat amd64.json - cat arm64.json AMD64_DIGEST=$(jq -r '."containerimage.digest"' amd64.json) ARM64_DIGEST=$(jq -r '."containerimage.digest"' arm64.json) - echo $AMD64_DIGEST - echo $ARM64_DIGEST docker buildx imagetools create \ -t ${IMAGE}:${VERSION} \ ${IMAGE}@${AMD64_DIGEST} \