We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4a270b commit abe5712Copy full SHA for abe5712
.github/workflows/build.yml
@@ -83,7 +83,7 @@ jobs:
83
mkdir build
84
cd build
85
cmake .. ${{ matrix.defines }}
86
- cmake --build . --config Release
+ cmake --build . --config Debug
87
88
- name: Get commit hash
89
id: commit
@@ -99,6 +99,11 @@ jobs:
99
echo "Exists at path $filePath"
100
Copy-Item ggml/LICENSE .\build\bin\Release\ggml.txt
101
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
107
} elseif (Test-Path ".\build\bin\stable-diffusion.dll") {
108
$filePath = ".\build\bin\*"
109
0 commit comments