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 60c1ec6 commit 8412157Copy full SHA for 8412157
1 file changed
.github/workflows/release.yml
@@ -37,13 +37,14 @@ jobs:
37
38
- name: Create Distribution (Windows)
39
if: runner.os == 'Windows'
40
+ shell: pwsh
41
run: |
42
mkdir -p dist
43
xcopy /E /I include dist\include
44
mkdir dist\lib
45
mkdir dist\bin
- if exist build\lib\Release\slick-socket.lib copy build\lib\Release\slick-socket.lib dist\lib\
46
- if exist build\bin\Release\slick-socket-shared.dll copy build\bin\Release\slick-socket-shared.dll dist\bin\
+ if (Test-Path build\lib\Release\slick-socket.lib) { copy build\lib\Release\slick-socket.lib dist\lib\ }
47
+ if (Test-Path build\bin\Release\slick-socket-shared.dll) { copy build\bin\Release\slick-socket-shared.dll dist\bin\ }
48
49
- name: Create Distribution (Linux/macOS)
50
if: runner.os == 'Linux' || runner.os == 'macOS'
0 commit comments