We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aac5caf commit bcdcd01Copy full SHA for bcdcd01
1 file changed
.github/workflows/release.yml
@@ -44,6 +44,12 @@ jobs:
44
GOARCH: ${{ matrix.goarch }}
45
run: go build -v -o ${{ matrix.artifact }}${{ matrix.suffix }} .
46
47
+ - name: Install UPX
48
+ run: sudo apt-get update && sudo apt-get install -y upx-ucl
49
+
50
+ - name: Compress with UPX
51
+ run: upx --best --lzma ${{ matrix.artifact }}${{ matrix.suffix }}
52
53
- name: Archive
54
run: |
55
zip ${{ matrix.artifact }}.zip ${{ matrix.artifact }}${{ matrix.suffix }}
0 commit comments