From 2bd16551a4541080c338fd64267c585a5d5e438b Mon Sep 17 00:00:00 2001 From: Evan Vetere Date: Thu, 10 Sep 2026 16:44:45 -0400 Subject: [PATCH] fix: download only bundle artifacts when releasing 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 --- .github/workflows/manual-release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/manual-release.yml b/.github/workflows/manual-release.yml index 43312ed..b75af88 100644 --- a/.github/workflows/manual-release.yml +++ b/.github/workflows/manual-release.yml @@ -390,10 +390,11 @@ jobs: echo "prerelease=false" >> $GITHUB_OUTPUT fi - - name: Download All Artifacts + - name: Download bundle artifacts uses: actions/download-artifact@v7 with: path: artifacts + pattern: DatumConnect-* - name: Create stable asset aliases run: |