diff options
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) |