-
-
Save nanounanue/22b7a32fe6dd97c970d44c3740f6da85 to your computer and use it in GitHub Desktop.
Shell - Get latest release from GitHub
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
get_latest_release() { | |
curl --silent "https://api.github.com/repos/$1/releases/latest" | jq -r .tag_name | |
} | |
# Usage | |
# $ get_latest_release "creationix/nvm" | |
# v0.31.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment