fix(ci): use buildx imagetools for multi-arch manifest creation#79
Merged
fix(ci): use buildx imagetools for multi-arch manifest creation#79
Conversation
`docker manifest create` fails when source images are manifest lists, which happens on newer runners where buildx adds provenance attestations. `docker buildx imagetools create` handles this natively. Co-Authored-By: Claude Opus 4.6 <[email protected]>
7236c02 to
31c530b
Compare
Greptile SummaryReplaced raw
Confidence Score: 5/5
Important Files Changed
Flowchart%%{init: {'theme': 'neutral'}}%%
flowchart TD
A[release-plz job] -->|creates release| B{Release created?}
B -->|true| C[build-images: x86-64]
B -->|true| D[build-images: arm64]
B -->|false| E[End]
C --> F[Setup Buildx]
D --> G[Setup Buildx]
F --> H[Build & Push with provenance=false]
G --> I[Build & Push with provenance=false]
H --> J[Single-platform image x86-64]
I --> K[Single-platform image arm64]
J --> L[create-manifest job]
K --> L
L --> M[docker manifest create]
M --> N[Multi-arch manifest]
N --> O[docker manifest push]
style H fill:#90EE90
style I fill:#90EE90
style J fill:#90EE90
style K fill:#90EE90
Last reviewed commit: 31c530b |
Merged
shikhar
pushed a commit
that referenced
this pull request
Feb 19, 2026
## 🤖 New release * `cachey`: 0.10.1 -> 0.10.2 <details><summary><i><b>Changelog</b></i></summary><p> <blockquote> ## [0.10.2](0.10.1...0.10.2) - 2026-02-19 ### Fixed - *(ci)* use buildx imagetools for multi-arch manifest creation ([#79](#79)) ### Other - add conventional commit check for PR titles ([#81](#81)) </blockquote> </p></details> --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
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.
Summary
docker manifest createfails when source images are manifest lists, which happens on newer runners where buildx adds provenance attestationsdocker manifest create+docker manifest pushwithdocker buildx imagetools create, which handles manifest list inputs nativelyTest plan
create-manifestjob succeeds🤖 Generated with Claude Code