Remove --all flag from skopeo copy commands in release workflow#6
Merged
miragecentury merged 1 commit intomainfrom Feb 20, 2026
Merged
Remove --all flag from skopeo copy commands in release workflow#6miragecentury merged 1 commit intomainfrom
miragecentury merged 1 commit intomainfrom
Conversation
skopeo copy --all is designed for multi-arch manifest lists. When the source OCI archive is a single-arch image (as built here without --platform), newer versions of skopeo can fail with --all since the source is not a proper manifest list. Removing --all lets skopeo copy the single image directly to the registry. https://claude.ai/code/session_01EPCuwhfNsPPDS5KCduYZfb
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
Removed the
--allflag from allskopeo copycommands in the release workflow that push container images to the registry.Changes
--allflag from 4skopeo copycommands that push semantic version, major.minor, major, and latest tagsDetails
The
--allflag in skopeo copy is used to copy all images when the source contains multiple images. Removing this flag simplifies the commands and may improve performance when only a single image needs to be pushed, or it could indicate a change in how multi-architecture images are being handled in the release process.https://claude.ai/code/session_01EPCuwhfNsPPDS5KCduYZfb