File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,15 @@ else ifeq ($(shell uname -s),Linux)
6464else
6565 @echo "Starting notarization for macOS binaries..."
6666 @find build/bin -type f -perm +111 -exec env QUILL_NOTARY_KEY_ID="$(QUILL_NOTARY_KEY_ID)" QUILL_NOTARY_ISSUER="$(QUILL_NOTARY_ISSUER)" QUILL_NOTARY_KEY="$(QUILL_NOTARY_KEY)" quill notarize {} \;
67+ @echo "All macOS binaries notarized successfully"
68+
69+ @echo "Stapling notarization tickets to binaries..."
70+ @find build/bin -type f -perm +111 -exec xcrun stapler staple {} \;
71+ @echo "All notarization tickets stapled successfully"
72+
73+ @echo "Verifying notarization status..."
74+ @find build/bin -type f -perm +111 -exec xcrun stapler validate {} \;
75+ @echo "All macOS binaries verified as notarized"
6776endif
6877
6978package :
You can’t perform that action at this time.
0 commit comments