fix: pin the Xcode development team in project.yml#328
Merged
Conversation
Keep.xcodeproj is generated by XcodeGen and gitignored, so the signing team selected in Xcode's UI was discarded on every `xcodegen generate`. KeepMac had no team at all as a result, leaving the Mac target to fall back to local signing. Setting DEVELOPMENT_TEAM in settings.base makes both targets inherit it from the spec, so regeneration no longer clears it. The team ID is not a credential: it ships inside every signed binary and is readable via `codesign -dv` on any distributed app. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.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.
Summary
Keep.xcodeprojis generated by XcodeGen and gitignored, so a team picked in Xcode's signing UI was wiped by the nextxcodegen generate.DEVELOPMENT_TEAMat all — only the iOS target had one, set by hand locally.DEVELOPMENT_TEAM: "636U736G9T"(Frank Barrett, confirmed from the signing cert'sOUfield) insettings.baseso both targets inherit it and regeneration can't clear it.codesign -dv.Test plan
xcodegen generateemits the team at the project level (Debug + Release), not per-targetxcodebuild -showBuildSettingsresolvesDEVELOPMENT_TEAM=636U736G9Tfor Keep/KeepMac × Debug/Releasexcodebuild -scheme KeepMac -arch x86_64→ BUILD SUCCEEDED, signed as "Apple Development: Frank Barrett"codesign -dv KeepMac.app→TeamIdentifier=636U736G9T🤖 Generated with Claude Code