We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8933f7f commit fe12890Copy full SHA for fe12890
.github/workflows/build.yml
@@ -97,10 +97,12 @@ jobs:
97
xcrun notarytool submit Specify_macos/Specify_macos.dmg --wait \
98
--apple-id "[email protected]" \
99
--password "$AC_PASSWORD" \
100
+ --team-id "$APPLE_TEAM_ID" \
101
| tee notarize-app-output.txt
102
grep -q "status: Accepted" notarize-app-output.txt || { echo "Notarization failed!"; exit 1; }
103
env:
104
AC_PASSWORD: ${{ secrets.AC_PASSWORD }}
105
+ APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
106
107
- name: Staple the notarization ticket to the installer
108
run: xcrun stapler staple Specify_macos/Specify_macos.dmg
0 commit comments