Update testing build path #21
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: Build GBA Project | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: docker run --rm -v ${{ github.workspace }}/test:/gba aaaronic/gba-compiler:1.3 | |
| - name: Upload my_project.gba | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: my_project.gba | |
| path: ${{ github.workspace }}/my_project.gba |