Skip to content

Instantly share code, notes, and snippets.

@thegecko
Last active August 3, 2021 20:07
Show Gist options
  • Save thegecko/088f1d5e6aad32717cee6014a611fd40 to your computer and use it in GitHub Desktop.
Save thegecko/088f1d5e6aad32717cee6014a611fd40 to your computer and use it in GitHub Desktop.
Download asset from private repo release

List assets from latest release:

curl -L https://<GH_TOKEN>:@api.github.com/repos/<ORG>/<REPO>/releases/latest

Download asset using ID from list above:

curl -L -H 'Accept: application/octet-stream' https://<GH_TOKEN>:@api.github.com/repos/<ORG>/<REPO>/releases/assets/<ASSET_ID>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment