From e4b91e7a5e1389e126cdb4b5fd3c46c3425213e5 Mon Sep 17 00:00:00 2001 From: XorTroll Date: Sun, 8 May 2022 14:19:39 +0200 Subject: [PATCH] Attempt to implement workflows --- .github/workflows/main.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 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..e81b665 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,26 @@ + +name: Build uLaunch + +on: [push] +jobs: + uLaunch: + runs-on: ubuntu-latest + + container: + image: devkitpro/devkita64 + + steps: + - uses: actions/checkout@v1 + - name: Update repository + run: | + git submodule update --init --recursive + + - name: Compile + run: | + make -j$(nproc) + zip -r SdOut.zip SdOut + + - uses: actions/upload-artifact@master + with: + name: uLaunch + path: SdOut.zip