From c90de8df2fcc02c20c2aa00feb1435c2cd20c9aa Mon Sep 17 00:00:00 2001 From: HamletDuFromage <61667930+HamletDuFromage@users.noreply.github.com> Date: Wed, 23 Sep 2020 21:39:16 +0000 Subject: [PATCH] Set up Github workflow --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..1b09340 --- /dev/null +++ b/.github/workflows/main.yml @@ -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