Skip to content
Qian-Ye_Lin edited this page Sep 1, 2022 · 3 revisions

Welcome to the toshi-nest wiki! Documentation

How to publish a new release

  1. In main, update package.json with the correct version number, with a commit message of the version number, e.g. 3.2.1.
  2. Create a new tag with the new version number and publish a release. There are two ways to do this.
  • On the command line:
git checkout main
git pull
git tag "version number"
git push origin "version number"

Then you can draft a release, fill in the release notes and click "Publish Release"

  • On the github web interface: You can create a tag when you publish a release Screenshot from 2022-09-01 14-16-02
Clone this wiki locally