From 8094ac70bdf8a63eda1a9da6fea9f0267f16da52 Mon Sep 17 00:00:00 2001 From: Tobias Gesellchen Date: Sun, 8 Feb 2026 01:03:44 +0100 Subject: [PATCH] Fix checksums job to only download binary artifacts (#23) The checksums job was downloading all artifacts including Docker build artifacts, but it was only designed to process binary artifacts. This caused failures when the Docker job created artifacts that didn't match the expected soundtouch-* binary file patterns. Changed the artifact download to use pattern: binaries-* to only download the binary artifacts that the checksums generation logic expects. --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e14af7a..9c9ec3f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -159,7 +159,7 @@ jobs: # Build CLI build_binary "soundtouch-cli" "./cmd/soundtouch-cli" - + # Build Service build_binary "soundtouch-service" "./cmd/soundtouch-service" id: build @@ -203,9 +203,10 @@ jobs: needs: [validate, build] steps: - - name: Download all artifacts + - name: Download binary artifacts uses: actions/download-artifact@v7 with: + pattern: binaries-* path: ./binaries - name: Generate checksums