33 lines
561 B
YAML
33 lines
561 B
YAML
# Goreleaser configuration
|
|
# for building binaries and packages for distributions and releasing on github
|
|
dist: bin
|
|
|
|
builds:
|
|
- binary: ssh-benchmark
|
|
env:
|
|
- CGO_ENABLED=0
|
|
main: main.go
|
|
goos:
|
|
- darwin
|
|
- linux
|
|
- freebsd
|
|
goarch:
|
|
- amd64
|
|
ignore:
|
|
- goos: darwin
|
|
goarch: 386
|
|
|
|
archives:
|
|
-
|
|
format_overrides:
|
|
- goos: windows
|
|
format: zip
|
|
files:
|
|
- LICENSE
|
|
- config.json.template
|
|
|
|
# release:
|
|
# # Do not auto publish release
|
|
# draft: true
|
|
# name_template: "{{.Tag}}"
|