Skip to content

Step to publish

Chirag Rami edited this page Jun 18, 2024 · 2 revisions

Steps to Publish

Publish - Steps to publish SDK

  1. Checkout master branch:
$ git checkout master
  1. Merge vx.x.x to master:
$ git merge vx.x.x
  1. Check again, make sure package.json to reflect the master version. E.g. '2.2.7'.
  2. Push to remote:
$ git push
  1. Tag the latest commit on master branch:
$ git tag -a '2.2.7' -m '2.2.7'
  1. Push tags to origin:
$ git push origin master --tags
  1. Publish the package to the Github Package Registry:
$ npm publish
Clone this wiki locally