Skip to content

Instantly share code, notes, and snippets.

@dirien
Created February 12, 2022 11:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dirien/96985432d90074843c4cf0032c5d6284 to your computer and use it in GitHub Desktop.
Save dirien/96985432d90074843c4cf0032c5d6284 to your computer and use it in GitHub Desktop.
download latest artifact from GitHub release
curl -s https://api.github.com/repos/<user>/<repo>/releases/latest | grep -E 'browser_download_url' | grep linux_amd64 | grep -Eo 'https://[^\"]*' | xargs wget -O - | tar -xz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment