feat(packaging): add Scoop installation support for Windows#4357
Open
lanshi17 wants to merge 1 commit into
Open
feat(packaging): add Scoop installation support for Windows#4357lanshi17 wants to merge 1 commit into
lanshi17 wants to merge 1 commit into
Conversation
Add GoReleaser Scoop manifest configuration to auto-publish to
esengine/scoop-bucket on stable releases. Users install via:
scoop bucket add reasonix https://github.com/esengine/scoop-bucket
scoop install reasonix
The manifest is automatically updated by GoReleaser on each stable
v* tag (same as Homebrew). Prereleases are skipped (skip_upload: auto).
Closes esengine#4326
Collaborator
|
@esengine this PR is directionally ready, but it needs one maintainer-owned infrastructure step before merge. Current blocker: Could you please complete the setup below?
After that is done and CI remains green, I think this PR can be merged. |
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
Adds Scoop package manager support for Windows users, allowing installation via:
Changes
.goreleaser.yaml— added ascoopssection to auto-publish the manifest toesengine/scoop-bucketon stable releases, using the same release-time publishing pattern as the existing Homebrew cask. Prereleases are skipped viaskip_upload: "auto"..github/workflows/release.yml— passesSCOOP_BUCKET_TOKENto GoReleaser during the CLI release job.README.md/README.zh-CN.md— added the Scoop install command to the install sections.docs/RELEASING.md— documented the Scoop channel in the release channels table.Maintainer setup required before merge
This PR depends on release infrastructure that is not part of this branch. Before merging, a maintainer with
esengineorganization/repository admin permissions should complete this checklist:esengine/scoop-bucketwith default branchmain.esengine/scoop-bucketwithContents: read/writepermission.esengine/DeepSeek-Reasonixas the Actions secretSCOOP_BUCKET_TOKEN, matching the existingHOMEBREW_TAP_TOKENrelease pattern.gh api repos/esengine/scoop-bucket --jq '{full_name,default_branch,private,html_url}' git ls-remote https://github.com/esengine/scoop-bucket.git HEADCurrent status checked during review:
esengine/scoop-bucketreturns 404, so the README install command and the next stablev*CLI release would fail until the setup above is complete.How it works
GoReleaser generates a
reasonix.jsonmanifest from the Windows release archives (reasonix-windows-amd64.zip,reasonix-windows-arm64.zip) and their SHA256 checksums, then commits it to the bucket repo. Scoop reads this manifest to download and extract the correct binary.Closes #4326