macOS and iOS
How do I notarise a macOS app in CI?
Quick answer
Use notarytool with an App Store Connect API key stored as a secret.
The detail that matters
Notarisation is network-bound and can take several minutes; run it in a separate job so it does not block test feedback.
Your next build could be twice as fast, at half the price
Start free. Migrating away is the same one line, and we publish that diff too.
Related
Do GitHub Actions runners support macOS?Yes, both GitHub-hosted and managed providers offer macOS runners on Apple silicon.Can I build iOS apps without a Mac runner?No. Xcode only runs on macOS, so an iOS build requires a macOS runner.Is Xcode preinstalled on macOS runners?Yes. runnerhut images ship several Xcode versions with matching command line tools.How do I select an Xcode version?Run sudo xcode-select -s /Applications/Xcode_16.4.app before your build steps.