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 . That will sync all of your tags. If you want to push a single tag, use git push .
git push --tags
git push