Skip to content

Commit 389b921

Browse files
committed
add github actions
1 parent 2a8f5a4 commit 389b921

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/build.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)