Skip to content

Commit

Permalink
goreleaser
Browse files Browse the repository at this point in the history
  • Loading branch information
kdudkov committed Nov 7, 2023
1 parent 496657b commit 37d7209
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ builds:
ldflags:
- '-s -w -X main.gitRevision={{.Version}} -X main.gitCommit={{.Commit}}'
goos: [ windows, linux, darwin ]
goarch: [ amd64, arm64 ]
goarch: [ amd64, arm64, arm ]
goarm: [ 6, 7 ]
ignore:
- goos: darwin
goarch: '386'
goarch: arm
- id: ctl
main: ./cmd/userctl
binary: userctl
Expand All @@ -31,10 +32,11 @@ builds:
ldflags:
- '-s -w -X main.gitRevision={{.Version}} -X main.gitCommit={{.Commit}}'
goos: [ windows, linux, darwin ]
goarch: [ amd64, arm64 ]
goarch: [ amd64, arm64, arm ]
goarm: [ 6, 7 ]
ignore:
- goos: darwin
goarch: '386'
goarch: arm
- id: takreplay
main: ./cmd/takreplay
binary: takreplay
Expand All @@ -46,10 +48,11 @@ builds:
ldflags:
- '-s -w -X main.gitRevision={{.Version}} -X main.gitCommit={{.Commit}}'
goos: [ windows, linux, darwin ]
goarch: [ amd64, arm64 ]
goarch: [ amd64, arm64, arm ]
goarm: [ 6, 7 ]
ignore:
- goos: darwin
goarch: '386'
goarch: arm
- id: client
main: ./cmd/webclient
binary: goatak_client
Expand All @@ -62,9 +65,6 @@ builds:
- '-s -w -X main.gitRevision={{.Version}} -X main.gitCommit={{.Commit}}'
goos: [ windows, linux, darwin ]
goarch: [ amd64, arm64 ]
ignore:
- goos: darwin
goarch: '386'
archives:
- id: server
builds: [ server, ctl, takreplay ]
Expand Down

0 comments on commit 37d7209

Please sign in to comment.