ci: sign + notarize release, embed LP700 extension in the app - #13
Merged
Conversation
Adds scripts/package-signed.sh (mirrors LP-100A-App): builds the app, embeds LP700Extension.appex under Contents/Extensions/, signs inside-out with Developer ID + hardened runtime, builds the DMG, and notarizes + staples it. Signing is gated on GitHub Actions secrets; with none set it falls back to ad-hoc so the build still succeeds. The release workflow's separate "Build .app" + "Build DMG" steps are replaced by one "Build signed + notarized DMG" step calling package-signed.sh with the signing/notary secrets. docs/SIGNING-SECRETS.md lists the required secrets. This makes an installed LP-700-App register its extension for the Amateur Radio Suite to host out-of-process (see the suite's docs/EXTENSIONKIT.md). Co-Authored-By: Claude Opus 4.8 <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.
What
Wires the LP-700-App release to produce a signed + notarized DMG whose app embeds the LP700 ExtensionKit extension — so an installed copy registers its extension for the Amateur Radio Suite to host out-of-process (see the suite's
docs/EXTENSIONKIT.md). Mirrors the proven LP-100A-App PR #6.Changes
scripts/package-signed.sh(new) — build app → buildLP700Extension.appex→ embed underContents/Extensions/→ sign inside-out (Developer ID,-o runtime --timestamp, extension carriesXcode/Extension/LP700.entitlements) → build DMG →notarytool submit --wait+stapler staple. Signing is gated on secrets; with none set it falls back to ad-hoc so the build still succeeds (but won't register on other Macs)..github/workflows/release.yml— the separate Build .app + Build DMG steps become one Build signed + notarized DMG step callingpackage-signed.sh, passing the signing/notary secrets. The.radiopluginstep is unchanged.docs/SIGNING-SECRETS.md(new) — the six GitHub Actions secrets and how to export the.p12.Verified
The same embed + inside-out sign + notarize flow was run locally for LP-700 (own Developer ID cert
A59B…, notary profileARS-LP700): notary Accepted, stapled, installed,pluginkitregisteredorg.vu3esv.radiosuite.LP700, andspctl -a -t exec→ accepted / Notarized Developer ID.Secrets to set on this repo
MACOS_CERT_P12_BASE64,MACOS_CERT_PASSWORD,KEYCHAIN_PASSWORD,NOTARY_APPLE_ID,NOTARY_TEAM_ID,NOTARY_PASSWORD— uses LP-700's own Developer ID cert (same teamY6FT52BKDA).🤖 Generated with Claude Code