Simplify multi arch manifest creation

Removed unnecessary output of JSON file contents before creating the multi-architecture manifest.

Signed-off-by: elseif <elseif@live.cn>
This commit is contained in:
elseif 2026-07-16 07:00:23 +08:00 committed by GitHub
parent ddb8fe368e
commit 54c562f054
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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} \