brazilian portuguese translation (#293) #89
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: SysDVR sysmodule | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ master ] | |
paths: | |
- SysDVRConfig/** | |
- sysmodule/** | |
pull_request: | |
branches: [ master ] | |
paths: | |
- SysDVRConfig/** | |
- sysmodule/** | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: devkitpro/devkita64:latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run build script | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y p7zip-full | |
chmod +x ReleaseSysmodule.sh | |
./ReleaseSysmodule.sh | |
- uses: actions/upload-artifact@v2 | |
with: | |
name: SysDVR sysmodule USB only | |
path: SysmoduleRelease/USB.zip | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: SysDVR sysmodule | |
path: SysmoduleRelease/SysDVR.zip | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Sysmodule debug ELFs | |
path: SysmoduleRelease/Debug/ |