Merged
Conversation
Add workflow_dispatch trigger with publish toggle, and a dedicated "Publish to VS Code Marketplace" step (vsce publish via VSCE_PAT secret). Marketplace publish and GitHub Release creation only fire on version tags; manual dispatch can package without publishing by setting publish=false. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
- Add semantic-release + plugins (commit-analyzer, release-notes-generator, npm, git, github) — bumps package.json version, commits, tags, and creates GitHub Release automatically on push to main - Add semantic-release.yml workflow (triggers on main push) - Update release.yml: sync version from git tag before packaging so VSIX name matches the release (e.g. codeclimate-visualiser-1.2.3.vsix); upload VSIX to existing GitHub Release via gh CLI; add manual version input - Add .releaserc.json config (no npm publish, VSIX upload deferred to release.yml) Commit message convention → version bump: fix: → patch (1.0.x) feat: → minor (1.x.0) BREAKING CHANGE: → major (x.0.0) Co-Authored-By: Claude Sonnet 4.6 <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
workflow_dispatchtrigger with apublishtoggle (default:true)vsce publish+VSCE_PATsecretSetup required
Add a
VSCE_PATsecret to the repo (Settings → Secrets → Actions) with a Personal Access Token from the VS Code Marketplace publisher portal.Release flow
Test plan
VSCE_PATsecret set in repo settingsv0.1.1) → verify CI passes, VSIX uploaded to GitHub Release, extension published to Marketplaceworkflow_dispatchwithpublish=false→ verify only package step runs, no publish🤖 Generated with Claude Code