diff options
author | saturneric <[email protected]> | 2024-07-29 16:09:19 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-29 16:09:19 +0000 |
commit | 4a50053ea062774819bdddb6405a7e505d6d6594 (patch) | |
tree | a22834fdd29dc15303bdf7bf5ceaa8d4cec9cd8f /.github/workflows/release.yml | |
parent | fix: use system installed libarchive on windows at full sdk build (diff) | |
download | GpgFrontend-4a50053ea062774819bdddb6405a7e505d6d6594.tar.gz GpgFrontend-4a50053ea062774819bdddb6405a7e505d6d6594.zip |
fix: add option --no-translations by windeployqt
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 9db3b204..7c39be12 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -290,7 +290,7 @@ jobs: mkdir -p build/artifacts/modules cp -r modules/build/artifacts/bin/* build/artifacts/modules cd build - windeployqt-qt6 --force ./artifacts/GpgFrontend.exe + windeployqt-qt6 --no-translations --force ./artifacts/GpgFrontend.exe echo "BUILD_TYPE_LOWER=${BUILD_TYPE,,}" >> ${GITHUB_ENV} echo "SHORT_SHA=`echo ${GITHUB_SHA} | cut -c1-8`" >> ${GITHUB_ENV} if: matrix.os == 'windows-2019' @@ -298,20 +298,20 @@ jobs: - name: Upload Artifact (Linux) uses: actions/upload-artifact@master with: - name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE_LOWER}}-${{ env.SHORT_SHA }} + name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE_LOWER}}-${{env.SHORT_SHA}} path: ${{github.workspace}}/build/final-artifact/Gpg_Frontend*.AppImage* if: matrix.os == 'ubuntu-20.04' - name: Upload Artifact (macOS) uses: actions/upload-artifact@master with: - name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE_LOWER}}-${{ env.SHORT_SHA }} + name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE_LOWER}}-${{env.SHORT_SHA}} path: ${{github.workspace}}/build/final-artifact/* if: matrix.os == 'macos-13' || matrix.os == 'macos-12' || matrix.os == 'macos-14' - name: Upload Artifact (Windows) uses: actions/upload-artifact@master with: - name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE_LOWER}}-${{ env.SHORT_SHA }} + name: gpgfrontend-${{matrix.os}}-${{env.BUILD_TYPE_LOWER}}-${{env.SHORT_SHA}} path: ${{github.workspace}}/build/artifacts/* if: matrix.os == 'windows-2019' |