- Bump version in
.version
file ./gradlew :vscode:clean :vscode:regenerate && cd vscode && vsce package && cd ..
will regeneratesnippets.json
,README.md
&package.json
- Update
CHANGELOG.md
with release notes git add .
will stage all local changes for commitgit commit -m <Changes>
will commit to local git repogit tag -a vscode-<version> -m "<Release notes>"
will create tag with the latest versiongit push && git push origin vscode-<version>
will push both the code & the tags to github./gradlew :vscode:clean :vscode:regenerate && cd vscode && vsce publish && cd ..
will publish plugin to visual studio marketplace