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
|
run: cmake --build build --verbose
|
||||||
|
|
||||||
- name: Package (CPack)
|
- name: Package (CPack)
|
||||||
|
if: ${{ !matrix.n3ds }}
|
||||||
run: |
|
run: |
|
||||||
cd build
|
cd build
|
||||||
cpack .
|
cpack .
|
||||||
@ -131,6 +132,13 @@ jobs:
|
|||||||
--output appimage && \
|
--output appimage && \
|
||||||
mv *.AppImage dist/
|
mv *.AppImage dist/
|
||||||
|
|
||||||
|
- name: Package (3DS)
|
||||||
|
if: ${{ matrix.n3ds }}
|
||||||
|
run: |
|
||||||
|
cd build
|
||||||
|
mkdir dist
|
||||||
|
mv *.3dsx dist/
|
||||||
|
|
||||||
- name: Upload Build Artifacts
|
- name: Upload Build Artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
@ -138,6 +146,7 @@ jobs:
|
|||||||
path: |
|
path: |
|
||||||
build/dist/isle-*
|
build/dist/isle-*
|
||||||
build/dist/*.AppImage
|
build/dist/*.AppImage
|
||||||
|
build/dist/*.3dsx
|
||||||
|
|
||||||
flatpak:
|
flatpak:
|
||||||
name: "Flatpak (${{ matrix.arch }})"
|
name: "Flatpak (${{ matrix.arch }})"
|
||||||
|
|||||||
@ -676,4 +676,7 @@ if(MSVC)
|
|||||||
else()
|
else()
|
||||||
set(CPACK_GENERATOR TGZ)
|
set(CPACK_GENERATOR TGZ)
|
||||||
endif()
|
endif()
|
||||||
include(CPack)
|
|
||||||
|
if(NOT NINTENDO_3DS)
|
||||||
|
include(CPack)
|
||||||
|
endif()
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user