Nintendo Switch #316
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: Nintendo Switch | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ switch-port-2.2.13 ] | |
pull_request: | |
branches: [ switch-port-2.2.13 ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: devkitpro/devkita64 | |
steps: | |
- name: Install 7z/zip | |
run: | | |
apt-get update | |
apt-get install -y zip p7zip-full | |
- name: Checkout repo | |
uses: actions/checkout@v1 | |
- name: make clean | |
run: make PLATFORM=Switch clean | |
- name: make | |
run: make PLATFORM=Switch | |
- name: Upload NRO | |
uses: actions/upload-artifact@v2 | |
with: | |
name: nro | |
path: bin/Switch/SRB2-Persona.nro |