mirror of
https://github.com/isledecomp/isle-portable.git
synced 2026-02-03 12:31:15 +00:00
n3ds: just distribute the .3dsx
This commit is contained in:
parent
6b5fbdd27a
commit
f18f5c2316
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@ -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 }})"
|
||||
|
||||
@ -676,4 +676,7 @@ if(MSVC)
|
||||
else()
|
||||
set(CPACK_GENERATOR TGZ)
|
||||
endif()
|
||||
include(CPack)
|
||||
|
||||
if(NOT NINTENDO_3DS)
|
||||
include(CPack)
|
||||
endif()
|
||||
|
||||
Loading…
Reference in New Issue
Block a user