Update README.md #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build sys-tune and overlay | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: devkitpro/devkita64:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
with: | |
submodules: recursive | |
- name: Build | |
run: | | |
make -j$(nproc) | |
mkdir -p dist/switch/.overlays | |
mkdir -p dist/atmosphere/contents/4200000000000000/flags | |
touch dist/atmosphere/contents/4200000000000000/flags/boot2.flag | |
cp sys-tune/sys-tune.nsp dist/atmosphere/contents/4200000000000000/exefs.nsp | |
cp sys-tune/toolbox.json dist/atmosphere/contents/4200000000000000/ | |
cp overlay/sys-tune-overlay.ovl dist/switch/.overlays/ | |
- uses: actions/upload-artifact@master | |
with: | |
name: sys-tune | |
path: dist |