Skip to content

Commit abe5712

Browse files
authored
Debug
1 parent c4a270b commit abe5712

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/build.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ jobs:
8383
mkdir build
8484
cd build
8585
cmake .. ${{ matrix.defines }}
86-
cmake --build . --config Release
86+
cmake --build . --config Debug
8787
8888
- name: Get commit hash
8989
id: commit
@@ -99,6 +99,11 @@ jobs:
9999
echo "Exists at path $filePath"
100100
Copy-Item ggml/LICENSE .\build\bin\Release\ggml.txt
101101
Copy-Item LICENSE .\build\bin\Release\stable-diffusion.cpp.txt
102+
} elseif (Test-Path ".\build\bin\Debug\stable-diffusion.dll") {
103+
$filePath = ".\build\bin\Debug\*"
104+
echo "Exists at path $filePath"
105+
Copy-Item ggml/LICENSE .\build\bin\Debug\ggml.txt
106+
Copy-Item LICENSE .\build\bin\Debug\stable-diffusion.cpp.txt
102107
} elseif (Test-Path ".\build\bin\stable-diffusion.dll") {
103108
$filePath = ".\build\bin\*"
104109
echo "Exists at path $filePath"

0 commit comments

Comments
 (0)