File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,15 @@ if [[ -z "$TAG" ]]; then
1919fi
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
2829UPX_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"
3132tar xf upx-${UPX_VERSION} -amd64_linux.tar.xz
3233mv upx-${UPX_VERSION} -amd64_linux/upx .
You can’t perform that action at this time.
0 commit comments