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