From a0ae3621472e5e42ddfac698eae1f21a3aa6917d Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Sat, 20 Jun 2026 12:42:05 +1000 Subject: [PATCH] fix: filter artifacts by .zip extension --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f828c5d9..515a39f1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -424,14 +424,14 @@ jobs: - name: Download binaries from workflow artifacts into temp folder uses: actions/download-artifact@v8 with: - pattern: ${{ env.storage_binary_base }}* + pattern: ${{ env.storage_binary_base }}*.zip merge-multiple: true path: /tmp/release - name: Download ${{ env.c_bindings_lib_base }} from workflow artifacts into temp folder uses: actions/download-artifact@v8 with: - pattern: ${{ env.c_bindings_lib_base }}* + pattern: ${{ env.c_bindings_lib_base }}*.zip merge-multiple: true path: /tmp/release