From 144918a67e215c0867b0300b477fcb8ce0ab102a Mon Sep 17 00:00:00 2001 From: E M <5089238+emizzle@users.noreply.github.com> Date: Fri, 30 Jan 2026 17:30:33 +1100 Subject: [PATCH] re-reverese order of steps so win dlls exist --- .github/workflows/release.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bf3b83cb..42bc5fcb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -111,13 +111,6 @@ jobs: make -j${ncpu} update make -j${ncpu} libstorage - - name: Upload Logos Storage binary to workflow artifacts - uses: actions/upload-artifact@v4 - with: - name: ${{ env.storage_binary }} - path: ${{ env.build_dir }}/${{ env.storage_binary_base }}* - retention-days: 30 - - name: Copy Windows dlls to build dir (Windows) run: | if [[ "${{ matrix.os }}" == "windows" ]]; then @@ -125,6 +118,13 @@ jobs: cp -v "${MINGW_PREFIX}/bin/${lib}" "${{ env.build_dir }}" done fi + + - name: Upload Logos Storage binary to workflow artifacts + uses: actions/upload-artifact@v4 + with: + name: ${{ env.storage_binary }} + path: ${{ env.build_dir }}/${{ env.storage_binary_base }}* + retention-days: 30 - name: Upload Windows dlls to workflow artifacts if: matrix.os == 'windows'