fix: use single registry for push-by-digest to fix manifest merge#19
Merged
Conversation
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
72f64b8 to
2691cb0
Compare
Super-linter summary
All files and directories linted successfully For more information, see the GitHub Actions workflow run Powered by Super-linter |
zhsama
approved these changes
Feb 16, 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.
Summary
mergejob failing withnot foundwhen creating manifest lists for Docker Hubname=ghcr.io/...from the build job'spush-by-digestoutput, so digests are only pushed to Docker HubRoot Cause
The build job specified two
namevalues in a singletype=imageoutput:type=image,name=langgenius/dify-agentbox,name=ghcr.io/langgenius/dify-agentbox,push-by-digest=true,...In
push-by-digestmode withname-canonical=true, buildx only pushed the image layers to GHCR (the second name), not Docker Hub. The merge job then tried to reference these digests on Docker Hub and failed withnot found.Fix
Follow the Docker official docs pattern: push-by-digest to a single registry (Docker Hub), then use
imagetools createin the merge job to create manifest lists for both Docker Hub and GHCR from the same source digests.