From ea9a65ad9c389bed5f368191b05017006e17db3e Mon Sep 17 00:00:00 2001 From: Henry Dollman Date: Sun, 21 Jul 2024 17:31:53 -0400 Subject: [PATCH] remove windows builds for now --- agent/.goreleaser.yml | 17 ++++++----------- hub/.goreleaser.yml | 23 +++++++++-------------- 2 files changed, 15 insertions(+), 25 deletions(-) diff --git a/agent/.goreleaser.yml b/agent/.goreleaser.yml index dbb7720..25028af 100644 --- a/agent/.goreleaser.yml +++ b/agent/.goreleaser.yml @@ -9,17 +9,12 @@ before: builds: - env: - CGO_ENABLED=0 - ignore: - - goos: darwin - goarch: 386 - - goos: linux - goarch: arm - - goos: linux - goarch: 386 - - goos: windows - goarch: arm64 - - goos: windows - goarch: 386 + goos: + - linux + - darwin + goarch: + - amd64 + - arm64 archives: - format: tar.gz diff --git a/hub/.goreleaser.yml b/hub/.goreleaser.yml index eece23a..1849f10 100644 --- a/hub/.goreleaser.yml +++ b/hub/.goreleaser.yml @@ -9,17 +9,12 @@ before: builds: - env: - CGO_ENABLED=0 - ignore: - - goos: darwin - goarch: 386 - - goos: linux - goarch: arm - - goos: linux - goarch: 386 - - goos: windows - goarch: arm64 - - goos: windows - goarch: 386 + goos: + - linux + - darwin + goarch: + - amd64 + - arm64 archives: - format: tar.gz @@ -28,9 +23,9 @@ archives: {{- .Os }}_ {{- .Arch }} # use zip for windows archives - format_overrides: - - goos: windows - format: zip + # format_overrides: + # - goos: windows + # format: zip changelog: disable: true