-
Notifications
You must be signed in to change notification settings - Fork 14
34 lines (32 loc) · 894 Bytes
/
ccpp.yml
File metadata and controls
34 lines (32 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: C/C++ CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container: devkitpro/devkita64:latest
steps:
- uses: actions/checkout@master
- name: make
run: make LATESTTAG=Beta
- name: Upload build artifact
uses: actions/upload-artifact@v1
with:
name: binary
path: Ultimate_Mod_Manager.nro
upload:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/download-artifact@v1
with:
name: binary
- name: Upload Release
uses: Genwald/create-release@eba889c
with:
token: ${{ secrets.GITHUB_TOKEN }}
name: beta
code: beta
body: Latest commit, automatically updated. May not be fully tested or fully working.
prerelease: true
recreate: true
assets: binary/Ultimate_Mod_Manager.nro:Ultimate_Mod_Manager.nro:application/octet-stream