We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d490658 commit 7061f13Copy full SHA for 7061f13
.github/workflows/build.yml
@@ -135,6 +135,11 @@ jobs:
135
echo "Exists at path $filePath"
136
Copy-Item ggml/LICENSE .\build\bin\Release\ggml.txt
137
Copy-Item LICENSE .\build\bin\Release\stable-diffusion.cpp.txt
138
+ } elseif (Test-Path ".\build\bin\Debug\stable-diffusion.dll") {
139
+ $filePath = ".\build\bin\Debug\*"
140
+ echo "Exists at path $filePath"
141
+ Copy-Item ggml/LICENSE .\build\bin\Debug\ggml.txt
142
+ Copy-Item LICENSE .\build\bin\Debug\stable-diffusion.cpp.txt
143
} elseif (Test-Path ".\build\bin\stable-diffusion.dll") {
144
$filePath = ".\build\bin\*"
145
0 commit comments