Created
June 17, 2020 05:37
-
-
Save jvcleave/b3d271750e839baa2ba29d67417da3d0 to your computer and use it in GitHub Desktop.
Catalina signing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://developer.apple.com/account/resources/certificates/list | |
https://support.apple.com/en-us/HT204397 | |
https://damian.fyi/2019/07/30/build-notarize-repeat/ | |
xcrun iTMSTransporter -m provider -u "[email protected]" -p "appspecifpassword" | |
xcrun altool --list-providers -u "[email protected]" -p "appspecifpassword" | |
security find-identity -v -p codesigning | |
macdeployqt Mac.app -sign-for-notarization="Developer ID Application: " | |
codesign -s "Developer ID Application: " --force --options=runtime --deep Mac.app | |
ditto -ck --keepParent "Mac.app" "Mac.zip" | |
xcrun altool --notarize-app -t osx -f Mac.zip --primary-bundle-id="com.domain.app" -u "[email protected]" -p "appspecifpassword" --asc-provider "SHORTCODEID" | |
xcrun altool --notarization-info UUID -u "[email protected]" -p "appspecifpassword" | |
xcrun stapler staple "Mac.app" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment