mirror of
https://github.com/GaryOderNichts/WiiUIdent.git
synced 2024-11-04 15:55:07 +01:00
19 lines
369 B
YAML
19 lines
369 B
YAML
|
name: Build
|
||
|
|
||
|
on: [push, pull_request]
|
||
|
|
||
|
jobs:
|
||
|
build-binary:
|
||
|
runs-on: ubuntu-22.04
|
||
|
steps:
|
||
|
- uses: actions/checkout@v3
|
||
|
- name: Build binary
|
||
|
run: |
|
||
|
docker run --rm -v ${PWD}:/project garyodernichts/wiiuident_builder make
|
||
|
- uses: actions/upload-artifact@v3
|
||
|
with:
|
||
|
name: WiiUIdent
|
||
|
path: |
|
||
|
*.wuhb
|
||
|
*.rpx
|