[WIP, PC] Add Native File Selection Dialog #1579
Workflow file for this run
This file contains hidden or 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: Switch Nightly Build | |
| on: | |
| push: | |
| paths: | |
| - CMakeLists.txt | |
| - cmake/platforms/switch.cmake | |
| - cmake/renderers/sdl2.cmake | |
| - cmake/windowing/sdl2.cmake | |
| - cmake/audio/sdl2.cmake | |
| - cmake/deps/* | |
| - source/runtime/** | |
| - source/renderers/sdl2/** | |
| - source/platforms/ | |
| - source/platforms/switch/** | |
| - source/* | |
| - source/menus/** | |
| - source/audio/sdl2/** | |
| - gfx/menu/** | |
| - include/** | |
| - .github/workflows/nightly-switch.yml | |
| - docker/Dockerfile.switch | |
| - source/main.cpp | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| nightly: | |
| runs-on: ubuntu-latest | |
| container: | |
| image: devkitpro/devkita64:latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Create `romfs` directory | |
| run: mkdir romfs | |
| - name: Build and Export | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| file: docker/Dockerfile.switch | |
| target: exporter | |
| outputs: type=local,dest=. | |
| - name: Upload Artifact | |
| if: github.event_name != 'pull_request' | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Scratch Everywhere! Switch Nightly | |
| path: scratch-nx.nro |