diff options
author | Saturneric <[email protected]> | 2021-06-25 23:36:39 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2021-06-25 23:36:39 +0000 |
commit | ec4ed400861b4a30582fcaab32f3ea2ce3ee181b (patch) | |
tree | 0859d5c24ad05ed63ebc86871e71e130840b7aeb | |
parent | Update release.yml (diff) | |
download | GpgFrontend-ec4ed400861b4a30582fcaab32f3ea2ce3ee181b.tar.gz GpgFrontend-ec4ed400861b4a30582fcaab32f3ea2ce3ee181b.zip |
Update release.yml
-rw-r--r-- | .github/workflows/release.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 71ead08a..454d00aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,6 +42,7 @@ jobs: brew install cmake git autoconf automake qt@5 gcc texinfo gettext brew link qt@5 brew link gcc + brew link gettext --force if: matrix.os == 'macos-latest' @@ -132,7 +133,10 @@ jobs: run: | cmake --build ${{github.workspace}}/build --config $env.BUILD_TYPE}} -- -j 3 macdeployqt ${{github.workspace}}/build/release/GpgFrontend.app - + mkdir {{github.workspace}}/build/tmp + hdiutil create {{github.workspace}}/build/tmp.dmg -ov -volname "GpgFrontend" -fs HFS+ -srcfolder {{github.workspace}}/build/release/ + mkdir {{github.workspace}}/build/artifact-out + hdiutil convert {{github.workspace}}/tmp/tmp.dmg -format UDZO -o {{github.workspace}}/build/artifact-out/GpgFrontend.dmg if: matrix.os == 'macos-latest' - name: Configure CMake & Build Binary(Windows) |