Use shared installer tooling for installs, updates, and releases#19
Merged
PabloZaiden merged 3 commits intoMay 5, 2026
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR replaces Link’s bespoke install/update/release plumbing with the shared @pablozaiden/installer tooling, so binary installs, self-updates, and release publishing all follow the same external implementation.
Changes:
- Replaced the custom update implementation with a thin adapter around
@pablozaiden/installer. - Switched the binary release workflow to the shared reusable release workflow and added
.github/installer.json. - Removed the repo-local installer script and updated README installation instructions to use the shared installer.
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
src/server/update.ts |
Replaces custom updater logic with shared installer adapter/config. |
src/server/update.test.ts |
Reworks tests around the adapter-based updater flow. |
src/server/commands.ts |
Simplifies CLI update command invocation. |
README.md |
Updates install instructions to the shared installer flow. |
package.json |
Adds the shared installer package dependency. |
install.sh |
Removes the bespoke installer script. |
bun.lock |
Locks the new installer dependency and its peer resolution. |
.github/workflows/binary-release.yml |
Replaces custom release job with shared reusable workflow. |
.github/installer.json |
Adds installer manifest consumed by the shared installer tooling. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
Changes
install.shscript.