Integrate VS Code extension into version bump & CI release#123
Merged
pepijndevos merged 2 commits intomainfrom Mar 10, 2026
Merged
Integrate VS Code extension into version bump & CI release#123pepijndevos merged 2 commits intomainfrom
pepijndevos merged 2 commits intomainfrom
Conversation
- Sync vscode-ext/package.json version to 1.13.0 (matching current tag) - Add bumpversion entry so bump-my-version updates both pyproject.toml and vscode-ext/package.json in a single bump - Build VSIX in CI after the JS release build - Add create-github-release job that attaches VSIX + wheels on tag push - Fix hardcoded version in BUILD.md install example Collaborative Work Statement: - Pepijn designed the integration plan: which files to change, the CI job structure, and the decision to defer Marketplace publishing - Claude implemented the four file edits following the plan exactly - Pepijn chose softprops/action-gh-release@v2 for release creation and decided to reuse the existing shadow-cljs JVM for VSIX builds Co-Authored-By: Claude Opus 4.6 <[email protected]>
Co-Authored-By: Claude Opus 4.6 <[email protected]>
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
vscode-ext/package.jsonversion with the project version viabump-my-versioncreate-github-releasejob that creates a GitHub Release with VSIX + wheels attached on tag pushBUILD.mdinstall exampleDetails
Version sync: Added a second
[[tool.bumpversion.files]]entry inpyproject.tomlso thatbump-my-versionautomatically updates bothpyproject.tomlandvscode-ext/package.json. Set the current extension version to1.13.0to match.CI VSIX build: Runs
package-vscodeafter the existingreleasebuild step, reusing the same JVM andnode_modules. The VSIX is uploaded as avscode-extensionartifact.GitHub Release: New
create-github-releasejob (tag-only) downloads all three artifacts and creates a release with auto-generated notes usingsoftprops/action-gh-release@v2. Marketplace publishing is deferred for now.Test plan
bump-my-version bump patch --dry-runfinds bothpyproject.tomlandvscode-ext/package.json🤖 Generated with Claude Code