Attempt to implement workflows

This commit is contained in:
XorTroll 2022-05-08 14:19:39 +02:00
parent ac30c68742
commit e4b91e7a5e

26
.github/workflows/main.yml vendored Normal file
View file

@ -0,0 +1,26 @@
name: Build uLaunch
on: [push]
jobs:
uLaunch:
runs-on: ubuntu-latest
container:
image: devkitpro/devkita64
steps:
- uses: actions/checkout@v1
- name: Update repository
run: |
git submodule update --init --recursive
- name: Compile
run: |
make -j$(nproc)
zip -r SdOut.zip SdOut
- uses: actions/upload-artifact@master
with:
name: uLaunch
path: SdOut.zip