Skip to content

Instantly share code, notes, and snippets.

@thekvs
Last active March 4, 2021 11:28
Show Gist options
  • Save thekvs/7d2f29404d28c9c742bf3c825e1990f5 to your computer and use it in GitHub Desktop.
Save thekvs/7d2f29404d28c9c742bf3c825e1990f5 to your computer and use it in GitHub Desktop.
Get latest release URL from GitHub using jq
curl --silent "https://api.github.com/repos/goreleaser/goreleaser/releases/latest" | jq -r '.assets[] | select (.name|test("amd64.deb")) | .browser_download_url'
curl --silent "https://api.github.com/repos/goreleaser/goreleaser/releases/latest" | jq -r '.assets[] | select (.name|test("Linux_x86_64.tar.gz")) | .browser_download_url'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment