@@ -10,12 +10,14 @@ A small commandline app written in Go that allows you to easily create
1010and delete releases of your projects on Github. In addition it allows
1111you to attach files to those releases.
1212
13- It interacts with the [ github releases API] ( http://developer.github.com/v3/repos/releases ) .
14- Though it's entirely possibly to [ do all these things with
15- cURL] ( https://github.com/blog/1645-releases-api-preview ) , It's not
16- really that user-friendly. For example, you need to first query the API
17- to find the id of the release you want, before you can upload an
18- artifact. ` github-release ` takes care of those little details.
13+ It interacts with the [ github releases API] [ releases-api ] . Though it's entirely
14+ possible to [ do all these things with cURL] [ curl ] , it's not really that
15+ user-friendly. For example, you need to first query the API to find the id of
16+ the release you want, before you can upload an artifact. ` github-release ` takes
17+ care of those little details.
18+
19+ [ curl ] : https://github.com/blog/1645-releases-api-preview
20+ [ releases-api ] : https://developer.github.com/v3/repos/releases
1921
2022It might still be a bit rough around the edges, pull requests are
2123welcome!
@@ -47,11 +49,11 @@ After that you should have a `github-release` executable in your
4749How to use
4850==========
4951
50- ** NOTE** : for these examples I've [ created a github
51- token ] ( https://help. github.com/articles/creating-an-access-token-for-command-line-use )
52- and set it as the env variable ` GITHUB_TOKEN ` . ` github-release ` will
53- automatically pick it up from the environment so that you don't have to
54- pass it as an argument.
52+ ** NOTE** : for these examples I've [ created a github token ] [ token ] and set it as
53+ the env variable ` GITHUB_TOKEN ` . ` github-release ` will automatically pick it up
54+ from the environment so that you don't have to pass it as an argument.
55+
56+ [ token ] : https://help.github.com/articles/creating-an-access-token-for-command-line-use
5557
5658``` sh
5759# set your token
0 commit comments