We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e1cc20f commit 2697fe4Copy full SHA for 2697fe4
.github/workflows/release.yml
@@ -417,10 +417,7 @@ jobs:
417
- name: Bundle runtime DLLs
418
run: |
419
New-Item -ItemType Directory -Force -Path release\windows | Out-Null
420
- Copy-Item build\RelWithDebInfo\vsdf.exe release\windows\
421
- if (Test-Path build\RelWithDebInfo\vsdf.pdb) {
422
- Copy-Item build\RelWithDebInfo\vsdf.pdb release\windows\
423
- }
+ Copy-Item build\Release\vsdf.exe release\windows\
424
Get-ChildItem -Path C:\vcpkg\installed\x64-windows-static\bin\*.dll -ErrorAction SilentlyContinue | Copy-Item -Destination release\windows\ -Force
425
# Prefer system Vulkan loader; avoid shipping vulkan-1.dll.
426
Remove-Item -ErrorAction SilentlyContinue release\windows\vulkan-1.dll
0 commit comments