Skip to content

Update dsiwifi

Update dsiwifi #2

Workflow file for this run

name: Release
on:
release:
types:
- published
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkitarm
name: Build with Docker using devkitARM
steps:
- name: Install Python
run: sudo apt-get -y install python
- name: Checkout repo
uses: actions/checkout@v1
- name: Build dsidl
run: |
make
# Make CIA
curl -LO https://github.com/ihaveamac/ctr_toolkit/releases/download/make_cia6.4builds/make_cia6.4builds.zip
unzip -j make_cia6.4builds.zip linux/make_cia
./make_cia --srl=dsidl.dsi
- name: Upload dsidl.dsi
uses: AButler/[email protected]
with:
files: dsidl.dsi
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Upload dsild.cia
uses: AButler/[email protected]
with:
files: dsidl.cia
repo-token: ${{ secrets.GITHUB_TOKEN }}