-
Notifications
You must be signed in to change notification settings - Fork 7
36 lines (33 loc) · 993 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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 }}