mirror of
https://github.com/ITotalJustice/sys-patch.git
synced 2024-11-23 18:29:14 +01:00
22 lines
393 B
YAML
22 lines
393 B
YAML
name: build
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: devkitpro/devkita64:latest
|
|
|
|
steps:
|
|
- name: Checkout 🛎️
|
|
uses: actions/checkout@master
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Build
|
|
run: make dist -j2
|
|
|
|
- uses: actions/upload-artifact@master
|
|
with:
|
|
name: sys-patch
|
|
path: sys-patch.zip
|