Created
July 18, 2018 21:33
-
-
Save michaelwoods/798224b7b1eaa19f75202e34dbef59ea to your computer and use it in GitHub Desktop.
Get latest release from provided github repo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| if [ $# -eq 0 ]; then | |
| echo "Provide org/repo as first argument." | |
| exit | |
| fi | |
| REPO=$1 | |
| curl -s "https://api.github.com/repos/${REPO}/releases/latest" | jq '.tag_name' | tr -d '"' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment