mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 19:41:49 +00:00
27 lines
612 B
YAML
27 lines
612 B
YAML
name: Build AIO-switch-updater
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
AIO-switch-updater:
|
|
runs-on: ubuntu-latest
|
|
container: hamletdufromage/devkita64_devkitarm
|
|
#container: devkitpro/devkita64_devkitarm
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: update repo
|
|
run: |
|
|
git submodule update --init --recursive
|
|
|
|
- name: Building aio-switch-updater
|
|
run: |
|
|
make -C aiosu-forwarder -f Makefile
|
|
make -j$(nproc)
|
|
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: aio-switch-updater
|
|
path: aio-switch-updater.nro
|