re-reverese order of steps so win dlls exist

This commit is contained in:
E M 2026-01-30 17:30:33 +11:00
parent 124afff57f
commit 144918a67e
No known key found for this signature in database

View File

@ -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'