From 71e1737dadfe63519b2fc32d9f18dd0819ba7f7c Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Fri, 30 Jan 2026 21:05:41 +1100 Subject: [PATCH] Second attempt to prevent libstorage.dll from being uploaded to release artifacts --- .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 2c5b31f5..855a1487 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -188,7 +188,7 @@ jobs: pattern: ${{ env.c_bindings_lib_base }}-* path: /tmp/release - - name: Compress workflow artifcats and create checksum for each + - name: Compress workflow artifacts and create checksum for each run: | cd /tmp/release checksum() { @@ -197,7 +197,8 @@ jobs: } # Compress and prepare - for file in ${{ env.storage_binary_base }}* ${{ env.c_bindings_lib_base }}*; do + for file in ${{ env.storage_binary_base }}* ${{ env.c_bindings_lib_base }}-*; do + echo "Compressing and checksumming file: ${file}" if [[ "${file}" == *".exe"* ]]; then # Windows - binary only