Skip to content

Commit c90b39f

Browse files
committed
Bump release script
1 parent b159c67 commit c90b39f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.circleci/release.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ if [[ -z "$TAG" ]]; then
1919
fi
2020

2121
# Install ghr
22-
GHR_VERSION="v0.5.4"
23-
curl -O \
24-
"https://github.com/tcnksm/ghr/releases/download/${GHR_VERSION}/ghr_${GHR_VERSION}_linux_386.zip"
25-
unzip ghr_${GHR_VERSION}_linux_386.zip
22+
GHR_VERSION="v0.13.0"
23+
curl --silent -L -O \
24+
"https://github.com/tcnksm/ghr/releases/download/${GHR_VERSION}/ghr_${GHR_VERSION}_linux_386.tar.gz"
25+
tar xf ghr_${GHR_VERSION}_linux_386.tar.gz
26+
mv ghr_${GHR_VERSION}_linux_386/ghr .
2627

2728
# Install upx
2829
UPX_VERSION="3.94"
29-
curl -O \
30+
curl --silent -L -O \
3031
"https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-amd64_linux.tar.xz"
3132
tar xf upx-${UPX_VERSION}-amd64_linux.tar.xz
3233
mv upx-${UPX_VERSION}-amd64_linux/upx .

0 commit comments

Comments
 (0)