Notary is 0.3.0 - #41
Merged
Merged
Conversation
The installer has been broken since the rename. It looks for Notary.app, and the newest release still carried Signet.app, so every install failed with "the download did not contain Notary.app". Nothing was wrong with the script. The app was renamed in #35 and no release was cut afterwards, so the newest download was still the old app under the old name. Ten commits have landed behind that tag, including the rename, a copy pass, and the setup screen no longer cutting its own explanation in half. The release pipeline was already right: app.zon says Notary and the workflow zips Notary.app. It just needed a tag.
sepehr-safari
force-pushed
the
release-0.3.0
branch
from
August 7, 2026 10:19
d2657b9 to
e2040bb
Compare
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.
Fixes the install failure you hit:
What was wrong
Nothing in the installer. It looks for
Notary.app, which is correct.The app was renamed from Signet to Notary in #35, and no release was cut
afterwards. So the newest release is still
Signet v0.2.0, shippingSignet-v0.2.0-macos.zip, and inside it isSignet.app. The installer downloadsthe newest release, does not find
Notary.appin it, and stops.Confirmed by downloading the current release and listing it:
The release pipeline was already correct:
gui/app.zondeclaresdisplay_name = "Notary"and the workflow zipsgui/dist/Notary.appintoNotary-<tag>-macos.zip. It only ever needed a tag.What this ships
Ten commits have been sitting behind that tag:
READMEs
After this merges I will tag
v0.3.0, then download the artifact and check itactually contains
Notary.appbefore saying it works.