Files
hekate/.github/workflows/main.yml
niklascfw 14b9087331
All checks were successful
Build / Build (push) Successful in 24s
Updated CI
2026-02-22 17:48:09 +01:00

35 lines
691 B
YAML

name: Build
on:
push:
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ubuntu-latest
container: devkitpro/devkitarm:latest
steps:
- name: Install dependencies
run: apt-get update && apt-get install -y nodejs
- name: Checkout latest code
uses: actions/checkout@v5
with:
clean: true
submodules: recursive
- name: Build
run: |
export DEVKITPRO=/opt/devkitpro
export DEVKITARM=$DEVKITPRO/devkitARM
make -j4 all
shell: bash
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: hekate
path: output/