Added option to override resource file location (#101) #48
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: Linux DEB/TAR | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt-get update && sudo apt-get install -y -q libsdl2-dev libaudiofile-dev dpkg-dev | |
| - name: Build DEB package | |
| run: ./package/make_linux_release.sh | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: simcoupe-deb | |
| path: build-linux/_packages/*.deb | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: simcoupe-tar | |
| path: build-linux/*.tar.gz |