diff options
author | saturneric <[email protected]> | 2024-04-28 17:03:13 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-04-28 17:03:13 +0000 |
commit | 5001b5ff08ebfd4426d87f172554e613e5c3b002 (patch) | |
tree | da9633062e1fe093a1a4bfa40c87e4e3454300c3 | |
parent | feat: load both integrated and external modules (diff) | |
download | GpgFrontend-5001b5ff08ebfd4426d87f172554e613e5c3b002.tar.gz GpgFrontend-5001b5ff08ebfd4426d87f172554e613e5c3b002.zip |
fix: --team-id line missing '\'
-rw-r--r-- | .github/workflows/release.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a84d584..4d265f4b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -214,7 +214,7 @@ jobs: run: | xcrun notarytool submit \ --apple-id ${{secrets.APPLE_DEVELOPER_ID}} \ - --team-id ${{secrets.APPLE_DEVELOPER_TEAM_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' |