How do you push a tag to a remote repository using Git?
Explanation
You can push a tag to a remote repository using Git :
If you want to push a single tag:
git push origin <tag_name>
And the following command should push all tags that you want
# not recommended
git push --tags
Also read, How do I update or sync a forked repository on GitHub?