Open
Conversation
Adds a GitHub Actions workflow (release-vscode.yml) that builds platform-specific .vsix packages with the clickhouse-lsp binary bundled inside, following the rust-analyzer pattern. Triggered by version tags (v*) or manual dispatch. Platforms: linux-x64, linux-arm64, darwin-x64, darwin-arm64, win32-x64, win32-arm64. Also updates the extension to prefer the bundled server binary before falling back to $PATH lookup. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Add --pre-release flag to vsce package/publish so all releases show as experimental in the VS Code Marketplace - Add packages/vscode/README.md for the marketplace page, with a prominent experimental warning banner - Bump engines.vscode to ^1.80.0 Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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
release-vscode.ymlGitHub Actions workflow that builds platform-specific.vsixpackages with theclickhouse-lspbinary bundled inside (rust-analyzer pattern)$PATHv*)workflow_dispatch--pre-releaseflag) so they show an experimental badge on the Marketplace. Remove the flag from the workflow when ready for stable releases.packages/vscode/README.md) with a prominent experimental warningHow it works
clickhouse-lspfor each target, copies it intopackages/vscode/server/, builds the TypeScript extension, packages a platform-specific.vsixviavsce package --pre-release --target.vsixartifacts and publishes to VS Code Marketplace (requiresVSCE_PATsecret) and optionally Open VSX (OVSX_PATsecret).vsixfiles attachedSetup required
VSCE_PATsecret (VS Code Marketplace personal access token)OVSX_PATsecret for Open VSX publishinggit tag v0.1.0 && git push --tagsTest plan
workflow_dispatch(without publish) to verify builds succeed.vsixartifacts are produced for all 6 platforms.vsixlocally and confirm the bundled LSP server startsserverPathsetting still overrides the bundled binary🤖 Generated with Claude Code