ci: link preview installers and pin install scripts - #2499
Merged
Conversation
✅ Deploy Preview for viteplus-preview ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
Contributor
Registry bridge build (
|
| Package | Version |
|---|---|
vite-plus |
0.0.0-commit.6789c50542dca692c8f494bd4d594a0fd2b4a160 |
@voidzero-dev/vite-plus-core |
0.0.0-commit.6789c50542dca692c8f494bd4d594a0fd2b4a160 |
Install the Vite+ CLI built from this commit, then migrate a project:
# macOS / Linux
curl -fsSL https://vite.plus | VP_PR_VERSION=2499 bash# Windows (PowerShell)
$env:VP_PR_VERSION="2499"; irm https://vite.plus/ps1 | iexAfter installing, upgrade the current project's vite-plus to this test build with:
vp migrateOr point your package manager at the bridge registry https://registry-bridge.viteplus.dev/:
| Package manager | Registry config |
|---|---|
| npm / pnpm / Bun | .npmrc: registry=https://registry-bridge.viteplus.dev/ |
| Yarn (v2+) | .yarnrc.yml: npmRegistryServer: "https://registry-bridge.viteplus.dev/" |
Then pin the build (vite aliases to vite-plus-core; pnpm can use a catalog, npm an overrides entry):
{
"devDependencies": {
"vite-plus": "0.0.0-commit.6789c50542dca692c8f494bd4d594a0fd2b4a160",
"vite": "npm:@voidzero-dev/vite-plus-core@0.0.0-commit.6789c50542dca692c8f494bd4d594a0fd2b4a160"
}
}
fengmk2
marked this pull request as ready for review
August 19, 2026 07:16
Contributor
🐳 Docker preview imageBuilt from this PR's registry bridge build:
# remove any stale local copy from a previous run, then pull fresh
docker rmi ghcr.io/voidzero-dev/vite-plus:pr-2499 2>/dev/null; docker pull ghcr.io/voidzero-dev/vite-plus:pr-2499Quick check: docker run --rm ghcr.io/voidzero-dev/vite-plus:pr-2499 vp --versionSee docs/guide/docker.md for usage. |
fengmk2
force-pushed
the
fix/preview-installer-links
branch
from
August 19, 2026 14:39
501a049 to
3a3cb4e
Compare
wan9chi
approved these changes
Aug 19, 2026
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.
Preview builds upload x64 and Arm64
vp-setup.exeartifacts, but the preview comment did not link to them. The comment also fetched installation scripts fromvite.plus, which serves the latest release.Now the comment links to both installer artifacts. GitHub requires sign-in and downloads each artifact as a ZIP file.
The shell commands fetch
install.shandinstall.ps1from the exact PR head commit. They then install the matching registry bridge version.