How to Tag and Push a Release with Git
Set the -a and the -m flags like so
git tag -a v1.0.0 -m "Note about the release goes here"
Then to push the tag to a repository
git push origin --tags
And that's it!
Here are the docs https://git-scm.com/book/en/v2/Git-Basics-Tagging
Comments