Added LUA Sfx library #66
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: DOL | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: DevkitPPC build | |
runs-on: ubuntu-latest | |
container: | |
image: devkitpro/devkitppc:latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Make | |
run: | | |
make clean | |
make | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: SD Card Files | |
path: ./driveRoot/ | |
- name: Setup tmate session | |
if: ${{ failure() }} | |
uses: mxschmitt/action-tmate@v3 | |
timeout-minutes: 15 |