Download only bundle artifacts when releasing - #184
Merged
Conversation
The release job downloaded every artifact in the workflow run. That set includes the buildx metadata the container job uploads, whose name carries tildes and which the release job has no use for. Extracting it fails, and the download action gives up after five retries, so the whole release fails after all four platform bundles have already built. This is not a flake. It failed identically on the first run and on a rerun of the failed job. Filter the download to the platform bundles the release actually publishes. The container image is published by its own job and reaches users through the registry, not through release assets. Claude-Session: https://claude.ai/code/session_01T2Bmcs7qWPaw1R6HnmrmBq
kevwilliams
approved these changes
Sep 10, 2026
kevwilliams
left a comment
Contributor
There was a problem hiding this comment.
The pattern DatumConnect-* correctly matches the three bundle artifacts uploaded by the bundle job (DatumConnect-Linux, DatumConnect-macOS, DatumConnect-Windows) and excludes the buildx metadata artifact from the container job, consistent with the existing DatumConnect-macOS reference in bundle.yml. Single-line workflow change, no stray files, and the commit message clearly explains the root cause and reproduction. Good to go.
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.
Releasing the desktop app fails at the last step, after all four platform bundles have already built. Users get no release, and the four builds are thrown away.
The release job collects every artifact the run produced, which sweeps in build metadata from the container job that the release has no use for and cannot unpack. This limits the collection to the platform bundles the release publishes.
Test plan
https://claude.ai/code/session_01T2Bmcs7qWPaw1R6HnmrmBq