This commit is contained in:
Korbo 2025-07-06 17:21:52 -05:00
parent 9160936f6a
commit 936b8c2816

View File

@ -68,6 +68,14 @@ jobs:
with: with:
cache: 'true' cache: 'true'
- name: Install 3DS dependencies
run: |
wget https://github.com/diasurgical/bannertool/releases/download/1.2.0/bannertool.zip
unzip -j "bannertool.zip" "linux-x86_64/bannertool" -d "/opt/devkitpro/tools/bin"
wget https://github.com/3DSGuy/Project_CTR/releases/download/makerom-v0.18/makerom-v0.18-ubuntu_x86_64.zip
unzip "makerom-v0.18-ubuntu_x86_64.zip" "makerom" -d "/opt/devkitpro/tools/bin"
chmod a+x /opt/devkitpro/tools/bin/makerom
- name: Install Linux dependencies (apt-get) - name: Install Linux dependencies (apt-get)
if: ${{ matrix.linux }} if: ${{ matrix.linux }}
run: | run: |