From c8cb430f1cfcdc667cc096047581abc45d4a47ed Mon Sep 17 00:00:00 2001 From: Christian Rocha Date: Mon, 15 Aug 2022 13:08:17 -0700 Subject: [PATCH] Remove UPX compression in GoReleaser --- pipedream/.goreleaser.yml | 21 +-------------------- 1 file changed, 1 insertion(+), 20 deletions(-) diff --git a/pipedream/.goreleaser.yml b/pipedream/.goreleaser.yml index 3288833..f379c4f 100644 --- a/pipedream/.goreleaser.yml +++ b/pipedream/.goreleaser.yml @@ -5,33 +5,18 @@ before: - go mod download builds: - - id: "general" + - id: "pipedream" binary: pipedream ldflags: -s -w -X main.Version={{ .Version }} env: - CGO_ENABLED=0 goos: - linux - goarch: - - amd64 - - arm64 - - 386 - goarm: - - 6 - - 7 - hooks: - post: - - upx "{{ .Path }}" - - id: "windows arm" - binary: pipedream - ldflags: -s -w -X main.Version={{ .Version }} - goos: - windows goarch: - amd64 - arm64 - 386 - - arm goarm: - 6 - 7 @@ -43,10 +28,6 @@ builds: goarch: - amd64 - arm64 - hooks: - post: - - upx "{{ .Path }}" - archives: - id: "default"