Created
June 29, 2023 14:15
-
-
Save KoltesDigital/62bebf33c928e6adda462e05728d56f7 to your computer and use it in GitHub Desktop.
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_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