-
Notifications
You must be signed in to change notification settings - Fork 64
41 lines (39 loc) · 957 Bytes
/
main.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
37
38
39
40
41
name: Build SDL2 console apps
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
all:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- platform: wiiu
ext: wuhb
- platform: switch
ext: nro
# - platform: 3ds
# ext: 3dsx
- platform: wii
ext: dol
container:
image: ghcr.io/fortheusers/sealeo:latest
steps:
- uses: actions/checkout@main
with:
submodules: recursive
- name: Build ${{ matrix.platform }}
run: make ${{ matrix.platform }}
- uses: actions/upload-artifact@v3
with:
name: appstore.${{ matrix.ext }}
path: /__w/hb-appstore/hb-appstore/appstore.${{ matrix.ext }}
- if: matrix.platform == 'wiiu'
uses: actions/upload-artifact@v3
with:
name: appstore.rpx
path: /__w/hb-appstore/hb-appstore/appstore.rpx