We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3921f2 commit 8780cb5Copy full SHA for 8780cb5
README.md
@@ -33,3 +33,18 @@ github deployment_status create $DEPLOYMENT_ID in_progress
33
# Create a production deployment and corresponding status, short syntax
34
github ds c $(github d c -e production -t deploy:migration) in_progress
35
```
36
+
37
+## How to install it?
38
39
+```shell
40
+go get github.com/inextensodigital/github
41
+```
42
43
+or... (feel free to replace `linux` by either `windows` or `darwin`)
44
45
46
+curl -s https://api.github.com/repos/inextensodigital/github/releases/latest | \
47
+ jq -r '.assets[] | select(.name | contains("linux-amd64")) | .browser_download_url' | \
48
+ grep -v sha256 | \
49
+ wget -qi - -O github && sudo chmod +x github
50
0 commit comments