From 9b6fc2282651f2c444bd789a0dfed17f1f8816d4 Mon Sep 17 00:00:00 2001 From: nyyu Date: Sat, 5 Aug 2023 12:13:01 +0200 Subject: [PATCH] feat(ci): gitea actions --- .gitea/workflows/build.yaml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .gitea/workflows/build.yaml diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..6762ff2 --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -0,0 +1,20 @@ +name: Build +on: [push] + +jobs: + Build: + runs-on: ubuntu-latest + container: + image: devkitpro/devkita64:latest + steps: + - name: Prerequisites + run: apt-get update && apt-get install --no-install-recommends -y nodejs + - name: Checkout + uses: actions/checkout@v3 + - name: Make + run: make TARGET=NXDavSync -j + - name: Artifacts + uses: actions/upload-artifact@v3 + with: + name: NXDavSync.nro + path: NXDavSync.nro