Core-Monitor now has source-controlled GitHub Actions for CI and release automation. Use Xcode Cloud only if you specifically want Apple's hosted direct-distribution flow in parallel.
For Xcode Cloud, the repo-side prerequisites are:
- The shared scheme is
Core-Monitor. - The archive action uses the
Releaseconfiguration. - The
smc-helpertarget is built as a dependency and embedded intoCore-Monitor.app. Core-MonitorTestsexists and can run in cloud workflows before archive/notarize steps.
Xcode Cloud workflows are stored in App Store Connect, not in a repository file. Use this checklist to create the workflow in Xcode or App Store Connect.
Name the workflow:
Test, Archive, and Notarize
Use these workflow settings:
- Product:
Core-Monitor - Repository: this repository
- Branch start condition: run on every push to the branch you use for releases, or all branches if you truly want every push archived
- Environment: Latest stable Xcode and macOS, unless a specific Xcode version is required
- Build action:
Testfollowed byArchive - Scheme:
Core-Monitor - Platform:
macOS - Configuration:
Release - Post action:
Notarize - Distribution:
Direct Distribution - Tests:
Core-MonitorTests
For this app, prefer a push workflow on your release branch over all branches. Notarizing every experimental branch will burn the monthly compute hours quickly and will also submit every branch build to Apple's notary service.
Use automatic signing in Xcode Cloud with team:
6VDP675K4L
Xcode Cloud needs permission to create or use a cloud-managed Developer ID certificate for direct distribution. If the first archive fails during signing or notarization, check these items in App Store Connect and Apple Developer:
- The main app bundle ID is registered:
CoreTools.Core-Monitor - The helper identifier is valid for signing:
ventaphobia.smc-helper - The Apple developer account has accepted current agreements
- The Xcode Cloud user/team role is allowed to use cloud signing and notarize software
- The workflow archive action is using direct distribution for macOS, not App Store distribution
After a push triggers the workflow:
- Open Xcode.
- Open the Report navigator.
- Select the Xcode Cloud build.
- Open the archive or artifacts for the completed build.
- Download or export the notarized app from the Direct Distribution result.
You can also find the same build from App Store Connect under the app's Xcode Cloud tab.
This command verifies the project still compiles without needing local signing credentials:
xcodebuild \
-project Core-Monitor.xcodeproj \
-scheme Core-Monitor \
-configuration Release \
-destination 'generic/platform=macOS' \
CODE_SIGNING_ALLOWED=NO \
buildThis does not notarize. It only confirms the code and packaging steps compile locally.