n3ds: just distribute the .3dsx

This commit is contained in:
Joshua Peisach 2025-06-30 18:36:09 -04:00
parent 6b5fbdd27a
commit f18f5c2316
No known key found for this signature in database
GPG Key ID: 41C3D4189AFEDB5A
2 changed files with 13 additions and 1 deletions

View File

@ -104,6 +104,7 @@ jobs:
run: cmake --build build --verbose
- name: Package (CPack)
if: ${{ !matrix.n3ds }}
run: |
cd build
cpack .
@ -131,6 +132,13 @@ jobs:
--output appimage && \
mv *.AppImage dist/
- name: Package (3DS)
if: ${{ matrix.n3ds }}
run: |
cd build
mkdir dist
mv *.3dsx dist/
- name: Upload Build Artifacts
uses: actions/upload-artifact@v4
with:
@ -138,6 +146,7 @@ jobs:
path: |
build/dist/isle-*
build/dist/*.AppImage
build/dist/*.3dsx
flatpak:
name: "Flatpak (${{ matrix.arch }})"

View File

@ -676,4 +676,7 @@ if(MSVC)
else()
set(CPACK_GENERATOR TGZ)
endif()
include(CPack)
if(NOT NINTENDO_3DS)
include(CPack)
endif()