We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 087f613 commit cf43b97Copy full SHA for cf43b97
.github/workflows/release.yml
@@ -54,6 +54,12 @@ jobs:
54
username: ${{ secrets.DOCKERHUB_USERNAME }}
55
password: ${{ secrets.DOCKERHUB_TOKEN }}
56
57
+ - name: Install UPX
58
+ if: ${{ steps.release.outputs.release_created }}
59
+ uses: crazy-max/ghaction-upx@v3
60
+ with:
61
+ install-only: true
62
+
63
- name: Go Release
64
if: ${{ steps.release.outputs.release_created }}
65
uses: goreleaser/goreleaser-action@v4
.goreleaser.yaml
@@ -112,3 +112,11 @@ checksum:
112
name_template: 'checksums.txt'
113
snapshot:
114
name_template: "{{ .Version }}-next"
115
116
+upx:
117
+ - enabled: true
118
+ ids:
119
+ - goet
120
+ goos:
121
+ - linux
122
+ - windows
0 commit comments