From 4f7a19d9e4d2b27175745b0be9805ab3226774cc Mon Sep 17 00:00:00 2001 From: Christian Semmler Date: Sun, 10 Aug 2025 19:21:07 -0700 Subject: [PATCH] Fix missing build artifacts (#665) * Fix missing build artifacts * Update ci.yml --- .github/workflows/ci.yml | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54d314ab..c0ae04c8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -122,10 +122,6 @@ jobs: - name: Build (CMake) run: cmake --build build --verbose --config Release - - name: Package Assets Separately - if: matrix.build-assets - run: (cd build/assets && zip -r ../../isle-assets.zip .) - - name: Package (CPack) if: ${{ !matrix.n3ds }} run: | @@ -176,6 +172,10 @@ jobs: mv *.3dsx dist/ mv *.cia dist/ + - name: Package Assets Separately + if: matrix.build-assets + run: (cd build/assets && zip -r ../dist/isle-assets.zip .) + - name: Upload Build Artifacts uses: actions/upload-artifact@v4 with: @@ -185,8 +185,6 @@ jobs: build/dist/*.AppImage build/dist/*.3dsx build/dist/*.cia - isle-assets.zip - if-no-files-found: ignore flatpak: name: "Flatpak (${{ matrix.arch }})"