Created
October 24, 2024 17:55
-
-
Save mortn/5f81fc74698854ae6869a0f93e06c61b to your computer and use it in GitHub Desktop.
Github get latest release download URL
This file contains 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 -s https://api.github.com/repos/$GH_USER/$GH_REPO/releases/latest | jq '.assets[]|.browser_download_url' | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment