mirror of
https://github.com/HamletDuFromage/aio-switch-updater.git
synced 2024-11-08 11:31:43 +00:00
Set up Github workflow
This commit is contained in:
parent
250c1a9f29
commit
c90de8df2f
1 changed files with 21 additions and 0 deletions
21
.github/workflows/main.yml
vendored
Normal file
21
.github/workflows/main.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
|||
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
|
Loading…
Reference in a new issue