diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index 14f0bb917..15c6e3567 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -117,26 +117,29 @@ jobs: # missing: perl, python - name: Deploy 3rd party dlls - shell: bash run: | - cd '${{github.workspace}}/build' - cp -v c:/vcpkg/installed/x64-windows-release/bin/zlib1.dll release/; if (!$?) { exit 1 } - cp -v c:/vcpkg/installed/x64-windows-release/bin/libcrypto*.dll release/; if (!$?) { exit 1 } - cp -v c:/vcpkg/installed/x64-windows-release/bin/libssl*.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libenchant-2.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libpcre2-*.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libglib-2.0-0.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libgmodule-2.0-0.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libintl-8.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libwinpthread-1.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libiconv-2.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libgcc_s_seh-1.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libstdc++-6.dll release/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/bin/libhunspell-1.7-0.dll release/; if (!$?) { exit 1 } - mkdir -p release/lib/enchant-2/ release/share/enchant/ release/share/hunspell/; if (!$?) { exit 1 } - touch release/share/locale; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/share/enchant/enchant.ordering release/share/enchant/; if (!$?) { exit 1 } - cp -v c:/msys64/mingw64/lib/enchant-2/enchant_hunspell.dll release/lib/enchant-2/; if (!$?) { exit 1 } + cd '${{github.workspace}}\build' + copy c:\vcpkg\installed\x64-windows-releasebin\zlib1.dll release; if (!$?) { exit 1 } + copy c:\vcpkg\installed\x64-windows-releasebin\libcrypto*.dll release; if (!$?) { exit 1 } + copy c:\vcpkg\installed\x64-windows-releasebin\libssl*.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libenchant-2.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libpcre2-*.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libglib-2.0-0.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libgmodule-2.0-0.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libintl-8.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libwinpthread-1.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libiconv-2.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libgcc_s_seh-1.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libstdc++-6.dll release; if (!$?) { exit 1 } + copy c:\msys64\mingw64\bin\libhunspell-1.7-0.dll release; if (!$?) { exit 1 } + mkdir release\lib + mkdir release\share + mkdir release\lib\enchant-2 + mkdir release\share\enchant + mkdir release\share\hunspell + touch release\share\locale; if (!$?) { exit 1 } + copy c:\msys64\mingw64\share\enchant\enchant.ordering release\share\enchant\; if (!$?) { exit 1 } + copy c:\msys64\mingw64\lib\enchant-2\enchant_hunspell.dll release\lib\enchant-2\; if (!$?) { exit 1 } - name: Deploy dictionaries run: |