mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 19:41:49 +00:00
21 lines
492 B
YAML
21 lines
492 B
YAML
name: Build AIO-switch-updater
|
|
|
|
on: [push]
|
|
jobs:
|
|
AIO-switch-updater:
|
|
runs-on: ubuntu-latest
|
|
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 -j$(nproc)
|
|
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: AIO-switch-updater
|
|
path: AIO-switch-updater.nro
|