Skip to content

Commit

Permalink
ci: fix upx issue in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
karl-cardenas-coding committed Jun 30, 2024
1 parent 5de9b5b commit 357b407
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,9 @@ jobs:
run: |
URL="https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-amd64_linux.tar.xz"
wget --quiet $URL --output-document upx.tar.xz
tar -xJf upx.tar.xz
chmod +x upx
sudo mv upx /usr/local/bin/
tar -xf upx.tar.xz
chmod +x upx-${UPX_VERSION}-amd64_linux/upx
sudo mv upx-${UPX_VERSION}-amd64_linux/upx /usr/local/bin/
upx --version
- uses: goreleaser/goreleaser-action@v6
Expand Down

0 comments on commit 357b407

Please sign in to comment.