How do I use github tags to create downloads for my project?
Are there any special keywords or formats that need to be used? I\'ve created a tag and pushed the latest ve
Tags aren't pushed by default; try a git push --tags <remote>. That will sync all of your tags. If you want to push a single tag, use git push <remote> <tagname>.
git push --tags <remote>
git push <remote> <tagname>