Add code signing, notarization, and CI/CD automation#15
Merged
Conversation
Implement production-ready code signing with Developer ID Application certificate, Hardened Runtime entitlements, and notarization support. Add GitHub Actions workflows for automated building and releasing via signed DMG. Update deploy.sh to use proper production signing instead of ad-hoc. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Owner
Author
Code reviewFound 3 issues:
Lines 36 to 44 in 8929f5a
spook/Resources/Spook.entitlements Lines 4 to 7 in 8929f5a
spook/.github/workflows/release.yml Lines 88 to 101 in 8929f5a 🤖 Generated with Claude Code - If this code review was useful, please react with 👍. Otherwise, react with 👎. |
… add error handling - deploy.sh: read SIGNING_IDENTITY from env, fall back to ad-hoc signing when unset - sign-and-package.sh: require SIGNING_IDENTITY via env instead of hardcoding - Spook.entitlements: remove unjustified allow-unsigned-executable-memory - release.yml: add set -e to notarize step to fail fast on errors Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Add @mainactor to DetailView so its computed properties can access the @MainActor-isolated appTraffic property on NetworkMonitor. Co-Authored-By: Claude Opus 4.6 (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
sign-and-package.shscript for local DMG creation with notarizationdeploy.shto use proper signing instead of ad-hocSetup Required
To use the GitHub Actions workflows, add these repository secrets:
DEVELOPER_ID_CERTIFICATE_P12(base64-encoded .p12 certificate)DEVELOPER_ID_CERTIFICATE_PASSWORD(certificate export password)SIGNING_IDENTITY(your signing identity string)APPLE_ID(your Apple ID email)APPLE_TEAM_ID(your team ID)APPLE_APP_PASSWORD(app-specific notarization password)For local builds, store notarization credentials:
Release process:
git tag v1.0.0 && git push origin v1.0.0🤖 Generated with Claude Code