Add code signing, notarization, and release workflow#86
Merged
dhilgaertner merged 1 commit intomainfrom Apr 6, 2026
Merged
Conversation
Sign and notarize the Crow app for macOS distribution so users can install without Gatekeeper warnings. Adds entitlements for hardened runtime (no sandbox — required for spawning arbitrary dev tools), a signing/notarization script, DMG creation, dynamic versioning from git tags, and a GitHub Actions release workflow triggered on v* tags. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
f6eb4bb to
f200116
Compare
5 tasks
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
Crow.entitlementswith hardened runtime entitlements (allow-unsigned-executable-memory, disable-library-validation, allow-jit) — no App Sandbox since the app spawns arbitrary dev toolsscripts/sign-and-notarize.shfor codesign → DMG creation → notarization → stapling pipeline.github/workflows/release.ymltriggered onv*tags (builds GhosttyKit, bundles app, signs, notarizes, publishes DMG + CLI to GitHub Releases)scripts/bundle.shandscripts/generate-build-info.shwith dynamic versioning fromCROW_VERSIONenv var / git tagssigntarget to Makefile and mise.tomlRequired GitHub Secrets
DEVELOPER_CERTIFICATE_BASE64DEVELOPER_CERTIFICATE_PASSWORDDEVELOPER_ID_APPLICATIONAPPLE_IDAPPLE_APP_SPECIFIC_PASSWORDAPPLE_TEAM_IDTest plan
make buildstill works without signing setup (regression)make releaseproduces unsigned but functional Crow.appcodesign --sign - --entitlements Crow.entitlements --options runtime --force --deep Crow.appsucceedscodesign --verify --deep --strict --verbose=2 Crow.apppassesv*-rc.*tag to test the release workflow end-to-end once secrets are configuredCloses #60
🤖 Generated with Claude Code