Skip to content

Commit

Permalink
Fix paths
Browse files Browse the repository at this point in the history
  • Loading branch information
pbek authored Aug 27, 2020
1 parent ff48328 commit 5f68d8f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -188,19 +188,19 @@ jobs:
# Bug in Qt 5.14+: https://stackoverflow.com/questions/61045959/windeployqt-error-unable-to-find-the-platform-plugin
windeployqt --release QOwnNotes.exe
# this dlls where missed by windeployqt
copy ..\..\Qt\5.13.2\mingw73_64\bin\libwinpthread-1.dll .
copy ..\..\Qt\5.13.2\mingw73_64\bin\libgcc_s_seh-1.dll .
copy ..\..\Qt\5.15.1\mingw81_64\bin\libwinpthread-1.dll .
copy ..\..\Qt\5.15.1\mingw81_64\bin\libgcc_s_seh-1.dll .
# this dll didn't work when released by windeployqt
# important: this dll needs to be updated when a new version of Qt is used!
# search for it in the mingw* folder of your local installation of Qt
# Update: we are trying a direct copy again
copy ..\..\Qt\5.13.2\mingw73_64\bin\libstdc++-6.dll .
copy ..\..\Qt\5.15.1\mingw81_64\bin\libstdc++-6.dll .
# for some reason AppVeyor or windeployqt uses a copy of the German
# translation file as English one, which screws up the English user interface
del translations\qt_en.qm
Compress-Archive -Path * -DestinationPath ..\QOwnNotes.zip
Compress-Archive -Path ..\..\Qt\5.13.2\mingw73_64\qml\QtQuick\* -DestinationPath ..\QtQuick.zip
tree ..\..\Qt\5.13.2 /f
Compress-Archive -Path ..\..\Qt\5.15.1\mingw81_64\qml\QtQuick\* -DestinationPath ..\QtQuick.zip
tree ..\..\Qt\5.15.1 /f
#
# Release QOwnNotes
Expand Down

0 comments on commit 5f68d8f

Please sign in to comment.