[ANCHOR-1190] Fix multi-arch image build#1923
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Docker publishing workflows to follow Docker’s recommended multi-arch pattern: push per-arch images by digest, then merge those digests into a single multi-arch manifest using docker buildx imagetools create. This addresses failures caused by trying to merge per-platform manifest lists with docker manifest create.
Changes:
- Build amd64/arm64 images and push them by digest (no intermediate arch tags).
- Create and push multi-arch manifests (release version/latest; develop edge/dated) via
docker buildx imagetools createusing the per-job digests.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| .github/workflows/on_release_created_or_updated.yml | Push per-arch images by digest and create release multi-arch manifests from digests. |
| .github/workflows/on_push_to_develop.yml | Apply the same digest + imagetools create pattern for edge and dated edge-* tags. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
marwen-abid
approved these changes
Apr 10, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
create_multi_arch_manifestjob usesdocker buildx imagetools createto merge both digests into a single multi-arch manifest.on_push_to_developContext
#1922 failed because
docker manifest create(used to merge the amd64 and arm64 builds) expects each source image to be a plain image manifest. However,build-push-actionv6 with buildx wraps each single-platform image into a manifest list (containing the image + provenance attestation), so the command rejects them with the error "is a manifest list"Testing
./gradlew testDocumentation
N/A
Known limitations
N/A