Skip to content

Commit

Permalink
feat: add windows binaries (#458)
Browse files Browse the repository at this point in the history
Adds windows binaries to the release process.
  • Loading branch information
cwaldren-ld authored Oct 23, 2024
1 parent cfc9f7b commit 388feb4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 388feb4

Please sign in to comment.