upgrade upx on release
This commit is contained in:
parent
e01db90b0b
commit
cf86f377fa
1 changed files with 10 additions and 0 deletions
10
.github/workflows/release.yml
vendored
10
.github/workflows/release.yml
vendored
|
@ -28,6 +28,16 @@ jobs:
|
|||
ssh-private-key: ${{ secrets.AUR_KEY }}
|
||||
ssh-host: aur.archlinux.org
|
||||
|
||||
- name: Update UPX
|
||||
run: |
|
||||
mkdir ./upx
|
||||
cd ./upx
|
||||
wget https://github.com/upx/upx/releases/download/v3.96/upx-3.96-amd64_linux.tar.xz
|
||||
tar -xvf upx-3.96-amd64_linux.tar.xz
|
||||
sudo install upx-3.96-amd64_linux/upx /usr/local/bin/upx
|
||||
cd ../
|
||||
rm -rf ./upx/
|
||||
|
||||
- name: Run GoReleaser
|
||||
uses: goreleaser/goreleaser-action@v2
|
||||
with:
|
||||
|
|
Loading…
Reference in a new issue