Skip to content
This repository was archived by the owner on Dec 27, 2025. It is now read-only.

Steps to publish.

Shamuwel Ahmed Ansai edited this page Sep 19, 2023 · 1 revision

When you want to create a new release, follow these steps:

  1. Update the version in your project's package.json file (e.g. 1.2.3)
  2. Commit that change (git commit -am v1.2.3)
  3. Tag your commit (git tag v1.2.3). Make sure your tag name's format is v*... Your workflow will use this tag to detect when to create a release
  4. Push your changes to GitHub (git push && git push --tags)
  5. Github will run an action, when it finishes, a new draft will be made in releases.
  6. Edit this draft and make the release.

Clone this wiki locally