Merge pull request #2 from mist8kengas/develop #8
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 (Multiple Arch) | |
| on: | |
| push: | |
| branches: [ develop ] | |
| jobs: | |
| GoBuild: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Run Makefile | |
| run: make | |
| - name: Upload win64 | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: win64 | |
| path: build/chibi_x64_win.exe | |
| - name: Upload Apple Silicon | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: apple_silicon | |
| path: build/chibi_darwin_silicon | |
| - name: Upload Apple Intel | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: apple_intel | |
| path: build/chibi_darwin_intel | |
| - name: Upload Debian | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: debian | |
| path: build/chibi_debian.deb | |
| - name: Upload Linux | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: linux | |
| path: build/chibi_x64_linux |