SSH-Benchmark/.goreleaser.yml
2023-07-31 14:53:20 +08:00

33 lines
544 B
YAML

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