diff options
author | saturneric <[email protected]> | 2025-05-01 19:19:43 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-05-01 19:19:43 +0000 |
commit | cc600ea1812b61e369e5d7295d76b8a032d3d8b7 (patch) | |
tree | 5801ab791a9e196ff0ddc9e9b8985fee072fce9a | |
parent | fix: specifies repository for nightly release deletion (diff) | |
download | GpgFrontend-cc600ea1812b61e369e5d7295d76b8a032d3d8b7.tar.gz GpgFrontend-cc600ea1812b61e369e5d7295d76b8a032d3d8b7.zip |
fix: windeployqt call in release workflow
Corrects the windeployqt call to use the correct version in the release workflow for Qt5.
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release-qt5.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release-qt5.yml b/.github/workflows/release-qt5.yml index 5bc5da8a..8fdf1fc4 100644 --- a/.github/workflows/release-qt5.yml +++ b/.github/workflows/release-qt5.yml @@ -245,10 +245,10 @@ jobs: rm -rf build/artifacts/bin/*.a touch build/artifacts/bin/PORTABLE.txt cd build - windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_core.dll - windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_ui.dll - windeployqt-qt6 --no-translations --force ./artifacts/bin/libgf_test.dll - windeployqt-qt6 --no-translations --force ./artifacts/bin/GpgFrontend.exe + windeployqt --no-translations --force ./artifacts/bin/libgf_core.dll + windeployqt --no-translations --force ./artifacts/bin/libgf_ui.dll + windeployqt --no-translations --force ./artifacts/bin/libgf_test.dll + windeployqt --no-translations --force ./artifacts/bin/GpgFrontend.exe mkdir upload-artifact cd artifacts zip -r ../upload-artifact/GpgFrontend-${{env.SHORT_SHA}}-x86_64.zip * |