mirror of
https://github.com/modmii/SysCheck-ModMii-Edition.git
synced 2025-02-18 06:06:19 +01:00
![wiidev](/assets/img/avatar_default.png)
- Compile with the latest version of devkitPPC - Reports can be saved to USB storage - The console ID is masked when uploaded - All of the assets have been optimised - Added GitHub continuous integration
42 lines
959 B
YAML
42 lines
959 B
YAML
name: Build binaries
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "**"
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.github/ISSUE_TEMPLATE/**'
|
|
- '.github/FUNDING.yml'
|
|
- '.github/**/*.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- '.github/ISSUE_TEMPLATE/**'
|
|
- '.github/FUNDING.yml'
|
|
- '.github/**/*.md'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
container: devkitpro/devkitppc:20230110
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Compile
|
|
run: make
|
|
|
|
- name: Package
|
|
run: |
|
|
mkdir -p upload/apps/SysCheckME
|
|
cp boot.dol upload/apps/SysCheckME
|
|
cp SysCheckME/icon.png upload/apps/SysCheckME
|
|
cp SysCheckME/meta.xml upload/apps/SysCheckME
|
|
echo "sha=$(git rev-parse --short=7 HEAD)" >> $GITHUB_ENV
|
|
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: SysCheckME-${{ env.sha }}
|
|
path: upload
|