We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 11f2a8d commit a992f42Copy full SHA for a992f42
1 file changed
.github/workflows/build.yml
@@ -22,18 +22,6 @@ jobs:
22
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
23
cmake --build build --config Release
24
25
- - name: Prepare Artifact
26
- shell: bash
27
- run: |
28
- # Bundling the DLL with the EXE so it actually runs
29
- DLL_PATH=$(find build -name "SDL3.dll" | grep Release | head -n 1)
30
- if [ -z "$DLL_PATH" ]; then
31
- echo "Error: SDL3.dll not found!"
32
- exit 1
33
- fi
34
- echo "Found SDL3.dll at: $DLL_PATH"
35
- cp "$DLL_PATH" build/Release/
36
-
37
- name: Upload Artifact
38
uses: actions/upload-artifact@v4
39
with:
@@ -42,7 +30,7 @@ jobs:
42
43
# macOS build
44
macos-build:
45
- name: macOS Build
+ name: macOS Build (base executable + SDL only)
46
runs-on: macos-latest
47
steps:
48
- uses: actions/checkout@v4
0 commit comments