mirror of
https://github.com/komodorio/helm-dashboard.git
synced 2026-03-24 03:38:04 +00:00
22 lines
479 B
YAML
22 lines
479 B
YAML
# .goreleaser.yml
|
|
# Build customization
|
|
builds:
|
|
- main: ./main.go
|
|
binary: helm-dashboard
|
|
ldflags: -s -w -X main.version={{.Version}} -X main.version={{.Version}} -X main.version={{.Version}} -X main.date={{.Date}}
|
|
goos:
|
|
- windows
|
|
- darwin
|
|
- linux
|
|
goarch:
|
|
- amd64
|
|
- arm64
|
|
env:
|
|
- CGO_ENABLED=0
|
|
archives:
|
|
- id: helm-dashboard
|
|
format: tar.gz
|
|
replacements:
|
|
amd64: x86_64
|
|
darwin: Darwin
|
|
linux: Linux |