Skip to content

Howto publish new version

Jakob Rathbauer edited this page Apr 11, 2025 · 1 revision

Prerequisites

  • You need a Personal Access Token to publish on the VS Code marketplace via our publisher.
  • You need the vsce cli tool.

For both, see the official docs: https://code.visualstudio.com/api/working-with-extensions/publishing-extension

Step-by-Step

  • Bump version in package.json
  • Update changelog.md
  • Commit as "Release x.y.z"
  • Create & push new git tag "x.y.z"
  • Run vsce package (this creates the .vsix file)
  • Github: Create a Release from the tag:
    • Include the .vsix file
    • Put as title: "x.y.z"
    • Put the following description:
The latest version of this extension can be installed via the [VS Code Marketplace](https://marketplace.visualstudio.com/items?itemName=OpenVADL.vscode-openvadl).

Alternatively, use the `.vsix` extension package for a manual install.
  • Run vsce publish
Clone this wiki locally