To create a new release for this extension the following steps need to be followed.
- Open a terminal,
- Navigate to the repo directory,
- Use Git checkout to navigate to the main branch,
- Open package.json and change the value of the
version
key to be the release number, e.g.1.0.0
for release v1.0.0. - Commit and Push all changes that will be in the release,
- Create a new tag using
git tag <tag name>
e.g.git tag v1.0.0
would create a tag, and subsequently a release, labelled v1.0.0. - Run
git push origin --tags
, this will trigger a github action that should build the release.
The github workflow file can be found here