name: Build NRO on: push: pull_request: jobs: build: runs-on: ubuntu-latest container: image: devkitpro/devkita64:latest steps: - name: Install Node & Git run: | apt-get update -qq apt-get install -y -qq nodejs git > /dev/null - name: Checkout uses: actions/checkout@v4 with: submodules: recursive - name: Build run: | patch -d library/borealis -p1 -N < patches/borealis-swkbd-libnx.patch || true patch -d library/borealis -p1 -N < patches/borealis-applet-frame-hints.patch || true make - name: Upload NRO uses: actions/upload-artifact@v3 with: name: PatchExtractor path: "*.nro"