Skip to content

Instantly share code, notes, and snippets.

@KoltesDigital
Created June 29, 2023 14:15
Show Gist options
  • Save KoltesDigital/62bebf33c928e6adda462e05728d56f7 to your computer and use it in GitHub Desktop.
Save KoltesDigital/62bebf33c928e6adda462e05728d56f7 to your computer and use it in GitHub Desktop.
get_github_release_url() {
repo=$1
name_match=$2
if ! curl -L -s https://api.github.com/repos/$1/releases/latest | jq -re "first(.assets[] | select(.name | match(\"$name_match\"))).browser_download_url" ; then
echo "No assets matching '$2' at 'https://github.com/$1/releases/latest/'."
return 1
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment