From 388feb45a1e211e6794f7ad0f239362608d88fa5 Mon Sep 17 00:00:00 2001 From: Casey Waldren Date: Wed, 23 Oct 2024 15:05:03 -0700 Subject: [PATCH] feat: add windows binaries (#458) Adds windows binaries to the release process. --- .goreleaser.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index b2571292..826f1209 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -8,10 +8,11 @@ builds: # Default is `-s -w -X main.version={{.Version}} -X main.commit={{.ShortCommit}} -X main.date={{.Date}}`. ldflags: - -s -w -X internal.version.Version={{.Version}} - goos: # Goreleaser's default for this is darwin + linux, but let's be explicit + goos: - darwin - linux - goarch: # Goreleaser's default for this is 386 + amd64, but let's be explicit + - windows + goarch: - '386' - amd64 - arm