mirror of
https://github.com/XorTroll/uLaunch
synced 2024-11-22 03:43:04 +00:00
Attempt to implement workflows
This commit is contained in:
parent
ac30c68742
commit
e4b91e7a5e
1 changed files with 26 additions and 0 deletions
26
.github/workflows/main.yml
vendored
Normal file
26
.github/workflows/main.yml
vendored
Normal 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
|
Loading…
Reference in a new issue