Releasing extension updates
How to release a new version of your extension
To update your extension, follow these steps:
Update the version number
The manifest.json file contains your extension's metadata, including its current version. Update the version field to reflect the new release.
{
"name": "my-extension",
"version": "2.0.0",
...
}Push the changes to the repository
Commit your version update and any code changes, then create a pull request. Once the pull request is merged, GitHub Actions will automatically trigger the release process.