Skip to content

Commit bfe53b7

Browse files
committed
chore(release): update windeployqt command and add module deployment
* Changed `windeployqt-qt6` to `windeployqt6` for consistency. * Added a loop to deploy all DLL modules in the artifacts directory.
1 parent 96647ca commit bfe53b7

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -388,10 +388,13 @@ jobs:
388388
touch build/artifacts/bin/ENV.ini
389389
echo "PortableMode=true" >> build/artifacts/bin/ENV.ini
390390
cd build
391-
windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_core.dll
392-
windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_ui.dll
393-
windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_test.dll
394-
windeployqt-qt6 --no-translations --force ./artifacts/bin/GpgFrontend.exe
391+
windeployqt6 --no-translations --force ./artifacts/bin/libgf_core.dll
392+
windeployqt6 --no-translations --force ./artifacts/bin/libgf_ui.dll
393+
windeployqt6 --no-translations --force ./artifacts/bin/libgf_test.dll
394+
windeployqt6 --no-translations --force ./artifacts/bin/GpgFrontend.exe
395+
for module in ./artifacts/modules/*.dll; do
396+
windeployqt6 --no-translations --force "$module"
397+
done
395398
mkdir upload-artifact
396399
cd artifacts
397400
zip -r ../upload-artifact/GpgFrontend-${{env.SHORT_SHA}}-${{matrix.os}}-x86_64.zip *

0 commit comments

Comments
 (0)