Skip to content

Instantly share code, notes, and snippets.

@goruha
Created January 12, 2017 05:52
Show Gist options
  • Save goruha/dc4c5eca4d8322b19ff718d5e1510723 to your computer and use it in GitHub Desktop.
Save goruha/dc4c5eca4d8322b19ff718d5e1510723 to your computer and use it in GitHub Desktop.
Script allow to download releases from github
#!/usr/bin/env bash
#
# gh-dl-release! It works!
#
# Source https://gist.github.com/maxim/6e15aa45ba010ab030c4
#
# This script downloads an asset from latest or specific Github release of a
# private repo. Feel free to extract more of the variables into command line
# parameters.
#
# PREREQUISITES
#
# curl, wget, jq
#
# USAGE
#
# Set all the variables inside the script, make sure you chmod +x it, then
# to download specific version to my_app.tar.gz:
#
# gh-dl-release 2.1.1 my_app.tar.gz
#
# to download latest version:
#
# gh-dl-release latest latest.tar.gz
#
# If your version/tag doesn't match, the script will exit with error.
#GITHUB_TOKEN="<github_access_token>"
#REPO="<user_or_org>/<repo_name>"
#FILE="<name_of_asset_file>" # the name of your release asset file, e.g. build.tar.gz
VERSION=$1 # tag name or the word "latest"
GITHUB="https://api.github.com"
alias errcho='>&2 echo'
function gh_curl() {
curl -H "Authorization: token $GITHUB_TOKEN" \
-H "Accept: application/vnd.github.v3.raw" \
$@
}
if [ "$VERSION" = "latest" ]; then
# Github should return the latest release first.
parser=".[0].assets | map(select(.name == \"$FILE\"))[0].id"
else
parser=". | map(select(.tag_name == \"$VERSION\"))[0].assets | map(select(.name == \"$FILE\"))[0].id"
fi;
asset_id=`gh_curl -s $GITHUB/repos/$REPO/releases | jq "$parser"`
if [ "$asset_id" = "null" ]; then
errcho "ERROR: version not found $VERSION"
exit 1
fi;
curl -H 'Accept:application/octet-stream' -o $2 -L \
https://$GITHUB_TOKEN:@api.github.com/repos/$REPO/releases/assets/$asset_id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment