Add Mac Catalyst TestFlight deployment#541
Merged
jfversluis merged 2 commits intomainfrom Apr 8, 2026
Merged
Conversation
Add build-maccatalyst and deploy-maccatalyst jobs to release-apps.yml, mirroring the existing iOS TestFlight pipeline. The Mac Catalyst build produces a signed .pkg and uploads it via the same apple-actions/upload-testflight-build action. Add Entitlements.AppStore.plist with sandbox enabled (required by TestFlight/App Store) plus temporary exceptions for ~/.polypilot/ and ~/.copilot/ read-write access. The existing Entitlements.plist with sandbox disabled is it continues to be used by theunchanged Developer ID / Homebrew distribution in build.yml. New secrets required: - MACCATALYST_CERTIFICATE_BASE64 (Apple Distribution cert, p12) - MACCATALYST_CERTIFICATE_PASSWORD - MACCATALYST_CODESIGN_KEY (signing identity name) - MACCATALYST_PROVISIONING_PROFILE_BASE64 (.provisionprofile) - MACCATALYST_PROVISIONING_PROFILE_NAME - MACCATALYST_INSTALLER_SIGNING_KEY (3rd Party Mac Developer Installer) New environment: maccatalyst-release Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Mac Catalyst uses the same Apple Distribution certificate and App Store Connect provisioning profile as iOS. Replace the 6 separate MACCATALYST_* secrets with the existing IOS_* secrets and drop the maccatalyst-release environment requirement. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds Mac Catalyst as a TestFlight target alongside existing iOS and Android pipelines in release-apps.yml. The Developer ID / Homebrew distribution in build.yml is untouched.
Changes
New file: Entitlements.AppStore. sandbox enabled (required by TestFlight) with targeted exceptions for network, microphone, user-selected files, and home-relative paths (~/.polypilot/, ~/.copilot/).plist
New jobs in release-apps.yml:
New secrets required
Apple Developer Portal setup needed
What is NOT changed