Big changes to default theme, minor fixes and changes #75
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 uLaunch | |
on: [push] | |
jobs: | |
uLaunch: | |
runs-on: ubuntu-latest | |
container: | |
image: devkitpro/devkita64 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update packages | |
run: | | |
sudo -n apt-get update | |
sudo -n apt-get upgrade -y git maven | |
- name: Silence all git safe directory warnings | |
run: git config --system --add safe.directory '*' | |
- name: Update repository | |
run: | | |
git submodule update --init --recursive | |
- name: Prepare master libnx | |
run: | | |
git clone https://github.com/switchbrew/libnx | |
make -C libnx/ | |
cp -r libnx/nx/external/bsd/include libnx/nx | |
- name: Compile | |
run: | | |
make -j$(nproc) LIBNX=$PWD/libnx/nx/ | |
zip -r SdOut.zip SdOut | |
- uses: actions/upload-artifact@master | |
with: | |
name: SdOut | |
path: SdOut.zip |