Files
OmniNX-Installer-Payload/.github/workflows/build.yml
niklascfw 7fac0e50bb
Some checks failed
Build / build (push) Failing after 3s
Updated CI
2026-02-13 22:08:40 +01:00

25 lines
538 B
YAML

name: Build
on:
push:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Build payload
run: |
docker run --rm -v "${{ github.workspace }}:/work" -w /work \
-e DEVKITARM=/opt/devkitpro/devkitARM \
devkitpro/devkitarm:20251231 make
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: OmniNX-Installer
path: output/OmniNX-Installer.bin