DEV Community

smolthing
smolthing

Posted on

How to create a tag release

How to create a tag release for this tutorial.

Run commands:

git fetch --tag
git tag
git tag -a v1.0.0 -m "The beginning of smolthing backend"
git push origin --tag
Enter fullscreen mode Exit fullscreen mode

Tada πŸŽ‰ https://github.com/smolthing/backend/releases/tag/v1.0.0

Top comments (0)