Skip to content

Commit cc600ea

Browse files
committed
fix: windeployqt call in release workflow
Corrects the windeployqt call to use the correct version in the release workflow for Qt5.
1 parent f4a4650 commit cc600ea

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release-qt5.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -245,10 +245,10 @@ jobs:
245245
rm -rf build/artifacts/bin/*.a
246246
touch build/artifacts/bin/PORTABLE.txt
247247
cd build
248-
windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_core.dll
249-
windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_ui.dll
250-
windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_test.dll
251-
windeployqt-qt6 --no-translations --force ./artifacts/bin/GpgFrontend.exe
248+
windeployqt --no-translations --force ./artifacts/bin/libgf_core.dll
249+
windeployqt --no-translations --force ./artifacts/bin/libgf_ui.dll
250+
windeployqt --no-translations --force ./artifacts/bin/libgf_test.dll
251+
windeployqt --no-translations --force ./artifacts/bin/GpgFrontend.exe
252252
mkdir upload-artifact
253253
cd artifacts
254254
zip -r ../upload-artifact/GpgFrontend-${{env.SHORT_SHA}}-x86_64.zip *

0 commit comments

Comments
 (0)