We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a8f5a4 commit 389b921Copy full SHA for 389b921
.github/workflows/build.yml
@@ -0,0 +1,20 @@
1
+name: build c64win.exe
2
+on: [push]
3
+
4
+jobs:
5
+ build:
6
+ runs-on: ubuntu-latest
7
+ steps:
8
+ - name: Checkout Code
9
+ uses: actions/checkout@v4
10
11
+ - name: Build EXE with Docker
12
+ run: |
13
+ docker run --rm -v "${{ github.workspace }}":/build docker.io/retroelec42/sdl2-cross:latest make -f windows/Makefile
14
15
+ - name: Upload Executable
16
+ uses: actions/upload-artifact@v4
17
+ with:
18
+ name: windows-executable
19
+ path: "windows/c64win.exe"
20
0 commit comments