From c90b39fac81a26b9a687136cc917cad29dda0eaa Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Tue, 29 Oct 2019 13:34:45 +0100 Subject: Bump release script --- .circleci/release.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.circleci/release.sh b/.circleci/release.sh index b502c89..a55247f 100755 --- a/.circleci/release.sh +++ b/.circleci/release.sh @@ -19,14 +19,15 @@ if [[ -z "$TAG" ]]; then fi # Install ghr -GHR_VERSION="v0.5.4" -curl -O \ - "https://github.com/tcnksm/ghr/releases/download/${GHR_VERSION}/ghr_${GHR_VERSION}_linux_386.zip" -unzip ghr_${GHR_VERSION}_linux_386.zip +GHR_VERSION="v0.13.0" +curl --silent -L -O \ + "https://github.com/tcnksm/ghr/releases/download/${GHR_VERSION}/ghr_${GHR_VERSION}_linux_386.tar.gz" +tar xf ghr_${GHR_VERSION}_linux_386.tar.gz +mv ghr_${GHR_VERSION}_linux_386/ghr . # Install upx UPX_VERSION="3.94" -curl -O \ +curl --silent -L -O \ "https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-amd64_linux.tar.xz" tar xf upx-${UPX_VERSION}-amd64_linux.tar.xz mv upx-${UPX_VERSION}-amd64_linux/upx . -- cgit v1.2.3