Switch to Github API for release query

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2020-12-17 11:51:26 +01:00
parent 1c74e3298d
commit 1909b2e470
Signed by: luzifer
GPG Key ID: 0066F03ED215AD7D

View File

@ -2,15 +2,19 @@
set -euxo pipefail
# Install build utilities
apk --no-cache add curl
apk --no-cache add curl jq
# Get latest versions of tools using latestver
DUMB_INIT_VERSION=$(curl -sSfL 'https://lv.luzifer.io/catalog-api/dumb-init/latest.txt?p=version')
[ -z "${DUMB_INIT_VERSION}" ] && { exit 1; }
# Get latest versions of tools using Github API
ASSET_URL=$(
curl -s "https://api.github.com/repos/Yelp/dumb-init/releases/latest" |
jq -r '.assets[] | .browser_download_url' |
grep "$(uname -m)$"
)
[[ -n $ASSET_URL ]] || exit 1
# Install tools
curl -sSfLo /usr/local/bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_x86_64
curl -sSfLo /usr/local/bin/dumb-init "${ASSET_URL}"
chmod +x /usr/local/bin/dumb-init
# Cleanup
apk --no-cache del curl
apk --no-cache del curl jq