From b5ddb042b8bf44ec87ff1589b5055d063ad11829 Mon Sep 17 00:00:00 2001 From: Sen66 Date: Sun, 22 Feb 2026 19:06:50 +0100 Subject: [PATCH] Try to fix missing DLLs at CI windows builds Fix https://github.com/IChooseYou/Reclass/issues/2 --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5a747dc..403a958 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -49,6 +49,7 @@ jobs: - name: Package release zip shell: bash run: | + export PATH="$IQTA_TOOLS/mingw1310_64/bin:$PATH" mkdir -p release cp build/Reclass.exe release/ cp build/ReclassMcpBridge.exe release/ @@ -57,6 +58,7 @@ jobs: cp -r build/styles release/ 2>/dev/null || true cp -r build/imageformats release/ 2>/dev/null || true cp -r build/iconengines release/ 2>/dev/null || true + windeployqt --no-translations --no-system-d3d-compiler --no-opengl-sw release/Reclass.exe mkdir -p release/Plugins cp build/Plugins/*.dll release/Plugins/ 2>/dev/null || true cp -r build/themes release/ 2>/dev/null || true