From d2182d15e8d7f1911dbdd55ece61fa42ee7cadc5 Mon Sep 17 00:00:00 2001 From: BaiMeow Date: Tue, 12 Dec 2023 14:40:56 +0800 Subject: [PATCH] fix: mips64 is not supported by upx --- .goreleaser.yaml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index baf1762..711babd 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -30,9 +30,10 @@ builds: - mips64 - id: debug + tags: + - debug env: - CGO_ENABLED=0 - - GORELEASER_CURRENT_TAG=debug ldflags: - -X github.com/BaiMeow/wg-quick-op/cmd.version={{.Version}}-debug goos: @@ -100,6 +101,13 @@ upx: # Filter by build ID. ids: [release] + goarch: + - amd64 + - "386" + - arm + - arm64 + - mips + # Compress argument. # Valid options are from '1' (faster) to '9' (better), and 'best'. compress: '9'