Skip to content

Commit c4b11ae

Browse files
authored
fix: Install UPX in build workflow
Added step to install UPX for binary compression.
1 parent 8f2fe23 commit c4b11ae

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/build_binary.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,11 @@ jobs:
4040
with:
4141
go-version: 1.25.4
4242

43+
- name: Install UPX
44+
run: |
45+
sudo apt-get update
46+
sudo apt-get install -y upx-ucl
47+
4348
- name: Configure Git for Private Modules
4449
run: |
4550
git config --global url."https://${{ secrets.GHT }}@github.com/".insteadOf "https://github.com/"

0 commit comments

Comments
 (0)