Skip to content

Commit a992f42

Browse files
committed
Hopefully fix the CI part 4
1 parent 11f2a8d commit a992f42

1 file changed

Lines changed: 1 addition & 13 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,6 @@ jobs:
2222
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
2323
cmake --build build --config Release
2424
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-
3725
- name: Upload Artifact
3826
uses: actions/upload-artifact@v4
3927
with:
@@ -42,7 +30,7 @@ jobs:
4230

4331
# macOS build
4432
macos-build:
45-
name: macOS Build
33+
name: macOS Build (base executable + SDL only)
4634
runs-on: macos-latest
4735
steps:
4836
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)