add pastel pink jc color profile #503
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 AIO-switch-updater | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
AIO-switch-updater: | |
runs-on: ubuntu-latest | |
#container: hamletdufromage/devkita64_devkitarm | |
container: devkitpro/devkita64 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: update repo | |
run: | | |
git config --global --add safe.directory /__w/aio-switch-updater/aio-switch-updater/lib/borealis | |
git config --global --add safe.directory /__w/aio-switch-updater/aio-switch-updater | |
git config --global --add safe.directory /__w/aio-switch-updater/aio-switch-updater/TegraExplorer | |
git submodule update --init --recursive | |
- name: install dependencies | |
run: | | |
sudo apt update -y | |
sudo apt install build-essential -y | |
- name: Building aio-switch-updater | |
run: | | |
make -C aiosu-forwarder -f Makefile | |
make -j$(nproc) | |
- uses: actions/upload-artifact@master | |
with: | |
name: aio-switch-updater | |
path: aio-switch-updater.nro |