Before starting VsCode with this repo, don't forget to load the default values for local testing
Set these before starting VsCode:
process.env.PAT='you PAT'
process.env.GITHUB_USER='rajbos'
Publishing a new version is done through Git Tags. You can add a tag by calling the shell command below. The -m
option is for the message that annotates the tag.
We use semantic version as needed for the Action Marketplace.
git tag -a v1.0.0 -m "Version 1.0.0"
Next you need to push the tags to GitHub, which will trigger the publishing
workflow.
git push --tags