diff options
author | saturneric <[email protected]> | 2024-04-21 19:26:13 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-04-21 19:26:13 +0000 |
commit | f5b1f30fa7c2a942f7c402639638cd206e429164 (patch) | |
tree | 37f8ace3bd6e070fe4f636f7dc01b9fde688bc42 | |
parent | fix: use more cross-platform methods for add_custom_command on linux platform (diff) | |
download | GpgFrontend-f5b1f30fa7c2a942f7c402639638cd206e429164.tar.gz GpgFrontend-f5b1f30fa7c2a942f7c402639638cd206e429164.zip |
fix: move to notarytool in apple notarization process
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/release.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c7047bee..93687b1f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -212,11 +212,11 @@ jobs: - name: Notarize Release Build (macOS) run: | - xcrun altool --notarize-app \ - -f ${{github.workspace}}/build/GpgFrontend-${{env.sha_short}}-x86_64.zip \ - --primary-bundle-id ${{secrets.GPGFRONTEND_XOCDE_APPID}} \ - -u ${{secrets.APPLE_DEVELOPER_ID}} \ - -p ${{secrets.APPLE_DEVELOPER_ID_SECRET}} + xcrun notarytool submit \ + --apple-id ${{secrets.APPLE_DEVELOPER_ID}} \ + --team-id ${{secrets.APPLE_DEVELOPER_TEAM_ID}} + --password ${{secrets.APPLE_DEVELOPER_ID_SECRET}} \ + ${{github.workspace}}/build/GpgFrontend-${{env.sha_short}}-x86_64.zip if: matrix.os == 'macos-11' || matrix.os == 'macos-12' - name: Package App Image (Linux) |