v27.17.1 (hotfix) #188
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build TWiLight Menu++ Release | |
on: | |
release: | |
types: [created] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: devkitpro/devkitarm:20241104 | |
name: Build with Docker using devkitARM | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Install tools | |
run: | | |
sudo apt-get update | |
sudo apt-get install jq p7zip-full python -y | |
- name: Setup environment | |
run: | | |
git config --global safe.directory '*' | |
- name: Get manual pages | |
run: | | |
cd manual/nitrofiles | |
curl -LO https://github.com/DS-Homebrew/twilight-manual/releases/download/pages/pages.7z | |
7z x pages.7z | |
rm pages.7z | |
- name: Build TWiLightMenu++ | |
run: make package | |
- name: Make booter and TWiLightMenu CIAs | |
id: make-cias | |
run: | | |
cd booter/ | |
chmod +x make_cia | |
./make_cia --srl="booter.nds" --id_0=$(git rev-parse --short=7 HEAD) --tikID=$(git rev-parse --short=16 HEAD) | |
mkdir -p "../7zfile/3DS - CFW users/" | |
cp "booter.cia" "../7zfile/3DS - CFW users/TWiLight Menu.cia" | |
- name: Pack 7z Package for release | |
run: | | |
# Make artifacts directory | |
mkdir -p ~/artifacts | |
# Debug 7z | |
mv 7zfile/debug debug | |
7z a TWiLightMenu-debug-release.7z debug | |
mv TWiLightMenu-debug-release.7z ~/artifacts | |
mkdir -p 7zfile/_nds/nds-bootstrap/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/3dsmenu/themes/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/akmenu/themes/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/boxart/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/dsimenu/themes/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/icons/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/extras/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/extras/fonts/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/gamesettings/ | |
mkdir -p 7zfile/_nds/TWiLightMenu/r4menu/themes/ | |
# nds-bootstrap | |
mkdir -p nds-bootstrap | |
cd nds-bootstrap | |
curl -LO https://github.com/DS-Homebrew/nds-bootstrap/releases/latest/download/nds-bootstrap.7z | |
7z x nds-bootstrap.7z | |
mv nds-bootstrap.* .. | |
cd .. | |
mv nds-bootstrap/release-bootstrap.ver 7zfile/_nds/ | |
mv nds-bootstrap/nds-bootstrap-release.nds 7zfile/_nds/ | |
mv nds-bootstrap/nds-bootstrap-hb-release.nds 7zfile/DSi\&3DS\ -\ SD\ card\ users/_nds/ | |
# version.txt | |
printf "TWiLight Menu++: $(git describe --tags)\nnds-bootstrap: $(cat 7zfile/_nds/release-bootstrap.ver)\n\nRocketRobz, ahezard\n" > 7zfile/version.txt | |
# Main 7z | |
cp -r 7zfile TWiLightMenu | |
cd TWiLightMenu | |
7z a TWiLightMenu.7z . | |
mv TWiLightMenu.7z ~/artifacts | |
# DSi 7z | |
cp -r DSi\ -\ CFW\ users/SDNAND\ root/* . | |
rm -rf DSi\ -\ CFW\ users | |
cp -r DSi\&3DS\ -\ SD\ card\ users/* . | |
rm -rf DSi\&3DS\ -\ SD\ card\ users | |
rm -rf 3DS\ -\ CFW\ users | |
rm -rf Flashcard\ users | |
rm -rf Better\ DSi\ Menu\ Music | |
rm -rf Extra\ UI\ Music | |
rm -rf Multimedia | |
rm -rf Virtual\ Console | |
rm -rf _nds/GBARunner2_arm7dldi_3ds.nds | |
rm -rf _nds/GBARunner2_arm7dldi_nodsp_3ds.nds | |
rm -rf _nds/TWiLightMenu/bootplg.srldr | |
rm -rf _nds/TWiLightMenu/gbaswitch.srldr | |
7z a TWiLightMenu-DSi.7z | |
mv TWiLightMenu-DSi.7z ~/artifacts | |
# 3DS 7z | |
cd .. | |
rm -rf TWiLightMenu | |
cp -r 7zfile/ TWiLightMenu/ | |
cd TWiLightMenu | |
cp -r 3DS\ -\ CFW\ users/* . | |
rm -rf 3DS\ -\ CFW\ users | |
cp -r DSi\&3DS\ -\ SD\ card\ users/* . | |
rm -rf DSi\&3DS\ -\ SD\ card\ users | |
rm -rf DSi\ -\ CFW\ users | |
rm -rf Flashcard\ users | |
rm -rf Better\ DSi\ Menu\ Music | |
rm -rf Extra\ UI\ Music | |
rm -rf Multimedia | |
rm -rf Virtual\ Console | |
rm -rf _nds/GBARunner2_arm7dldi_dsi.nds | |
rm -rf _nds/GBARunner2_arm7dldi_nodsp_dsi.nds | |
rm -rf _nds/TWiLightMenu/unlaunch | |
rm -rf _nds/TWiLightMenu/bootplg.srldr | |
rm -rf _nds/TWiLightMenu/gbaswitch.srldr | |
7z a TWiLightMenu-3DS.7z | |
mv TWiLightMenu-3DS.7z ~/artifacts | |
# Flashcard 7z | |
cd .. | |
rm -rf TWiLightMenu | |
cp -r 7zfile/ TWiLightMenu/ | |
cd TWiLightMenu | |
cp -r Flashcard\ users/* . | |
rm -rf Flashcard\ users | |
rm -rf 3DS\ -\ CFW\ users | |
rm -rf DSi\&3DS\ -\ SD\ card\ users | |
rm -rf DSi\ -\ CFW\ users | |
rm -rf Better\ DSi\ Menu\ Music | |
rm -rf Extra\ UI\ Music | |
rm -rf Multimedia | |
rm -rf Virtual\ Console | |
7z a TWiLightMenu-Flashcard.7z | |
mv TWiLightMenu-Flashcard.7z ~/artifacts | |
# Virtual Console Add-on 7z | |
cd .. | |
rm -rf TWiLightMenu | |
cp -r 7zfile/Virtual\ Console/ TWiLightMenu | |
cd TWiLightMenu/_nds/TWiLightMenu/emulators | |
curl -LO https://github.com/wavemotion-dave/A8DS/releases/latest/download/A8DS.nds | |
curl -LO https://github.com/wavemotion-dave/StellaDS/releases/latest/download/StellaDS.nds | |
curl -LO https://github.com/wavemotion-dave/A5200DS/releases/latest/download/A5200DS.nds | |
curl -LO https://github.com/wavemotion-dave/A5200DS/releases/latest/download/A5200DSi.nds | |
curl -LO https://github.com/wavemotion-dave/A7800DS/releases/latest/download/A7800DS.nds | |
curl -LO https://github.com/wavemotion-dave/NINTV-DS/releases/latest/download/NINTV-DS.nds | |
curl -LO https://github.com/wavemotion-dave/ColecoDS/releases/latest/download/ColecoDS.nds | |
curl -LO https://github.com/wavemotion-dave/SugarDS/releases/latest/download/SugarDS.nds | |
curl -LO https://github.com/cotodevel/snemulds/raw/33f5f469b6e6c19cb3e1be9259b407832fce42b9/release/arm7dldi-ntr/SNEmulDS.nds | |
curl -LO https://github.com/cotodevel/snemulds/raw/33f5f469b6e6c19cb3e1be9259b407832fce42b9/release/arm7dldi-twl/SNEmulDS.srl | |
curl -LO https://github.com/DS-Homebrew/NesDS/releases/latest/download/nesDS.nds | |
curl -LO https://github.com/FluBBaOfWard/S8DS/releases/latest/download/S8DS.zip | |
7z x S8DS.zip S8DS.nds | |
rm S8DS.zip | |
curl -LO https://github.com/FluBBaOfWard/NGPDS/releases/latest/download/NGPDS.zip | |
7z x NGPDS.zip NGPDS.nds | |
rm NGPDS.zip | |
curl -LO https://github.com/FluBBaOfWard/NitroSwan/releases/latest/download/NitroSwan0_7_5.zip | |
7z x NitroSwan0_7_5.zip NitroSwan.nds | |
rm NitroSwan0_7_5.zip | |
# PicoDriveTWL is a prerelease, so get the latest URL from the GH api | |
curl -LO $(curl https://api.github.com/repos/DS-Homebrew/PicoDriveTWL/releases | jq --raw-output '.[0].assets[0].browser_download_url' -) | |
curl -LO https://github.com/DS-Homebrew/PokeMini/releases/latest/download/PokeMini.nds | |
cd ../../.. | |
7z a AddOn-VirtualConsole.7z | |
mv AddOn-VirtualConsole.7z ~/artifacts | |
# Multimedia Add-on 7z | |
cd .. | |
rm -rf TWiLightMenu | |
cp -r 7zfile/Multimedia/ TWiLightMenu | |
cd TWiLightMenu/_nds/TWiLightMenu/apps | |
curl -LO https://github.com/DS-Homebrew/tuna-vids/releases/latest/download/tuna-vids.nds | |
curl -LO https://github.com/RocketRobz/RocketVideoPlayer/releases/latest/download/RocketVideoPlayer.nds | |
# curl -LO https://github.com/Gericom/FastVideoDSPlayer/releases/latest/download/FastVideoDS.nds | |
cd ../../.. | |
7z a AddOn-Multimedia.7z | |
mv AddOn-Multimedia.7z ~/artifacts | |
# Better DSi Menu Music Add-on 7z | |
cd .. | |
rm -rf TWiLightMenu | |
cp -r 7zfile/Better\ DSi\ Menu\ Music/ TWiLightMenu | |
cd TWiLightMenu | |
7z a AddOn-BetterDSiMenuMusic.7z | |
mv AddOn-BetterDSiMenuMusic.7z ~/artifacts | |
# Extra UI Music Add-on 7z | |
cd .. | |
rm -rf TWiLightMenu | |
cp -r 7zfile/Extra\ UI\ Music/ TWiLightMenu | |
cd TWiLightMenu | |
7z a AddOn-ExtraUIMusic.7z | |
mv AddOn-ExtraUIMusic.7z ~/artifacts | |
- name: Publish build to GH Actions | |
uses: actions/upload-artifact@v4 | |
with: | |
path: ~/artifacts/* | |
name: build | |
# Only run this for non-PR jobs. | |
publish_build: | |
runs-on: ubuntu-latest | |
name: "Publish build to ${{ github.repository }}" | |
if: ${{ success() }} | |
needs: build | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: build | |
path: build | |
- name: Upload to ${{ github.repository }} release | |
run: | | |
# Delete debug 7z | |
rm ${{ github.workspace }}/build/TWiLightMenu-debug-release.7z | |
ID=$(jq --raw-output '.release.id' $GITHUB_EVENT_PATH) | |
for file in ${{ github.workspace }}/build/*; do | |
AUTH_HEADER="Authorization: token ${{ secrets.GITHUB_TOKEN }}" | |
CONTENT_LENGTH="Content-Length: $(stat -c%s $file)" | |
CONTENT_TYPE="Content-Type: application/7z-x-compressed" | |
UPLOAD_URL="https://uploads.github.com/repos/${{ github.repository }}/releases/$ID/assets?name=$(basename $file)" | |
curl -XPOST -H "$AUTH_HEADER" -H "$CONTENT_LENGTH" -H "$CONTENT_TYPE" --upload-file "$file" "$UPLOAD_URL" | |
done |