Skip to content

Commit

Permalink
NONE WILL ESCAPE
Browse files Browse the repository at this point in the history
  • Loading branch information
JustDoom committed Dec 7, 2024
1 parent 5a89ec4 commit e198df2
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,12 +74,23 @@ jobs:
run: |
mkdir -p build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=OFF
cmake .. -DCMAKE_BUILD_TYPE=Release
- name: Build CMake
run: |
cd build
cmake --build . --config Release
- name: Search for .dll and .lib files
run: |
echo "Searching for .dll and .lib files..."
find ./ -type f \( -iname "*.dll" -o -iname "*.lib" \) | tee found_files.txt
- name: Output Results
if: success()
run: |
echo "Found the following .dll and .lib files:"
cat found_files.txt
- name: Collect executable and assets
run: |
Expand Down

0 comments on commit e198df2

Please sign in to comment.