httpx/.goreleaser.yml

34 lines
411 B
YAML
Raw Normal View History

2021-08-07 23:26:41 +03:00
before:
hooks:
- go mod tidy
2020-06-01 22:20:06 +03:00
builds:
2021-08-07 23:26:41 +03:00
- env:
- CGO_ENABLED=0
goos:
- windows
- linux
- darwin
goarch:
- amd64
- 386
- arm
- arm64
ignore:
- goos: darwin
goarch: '386'
- goos: windows
goarch: 'arm'
binary: '{{ .ProjectName }}'
2021-08-09 16:25:43 +03:00
main: cmd/httpx/httpx.go
2021-08-07 23:26:41 +03:00
2020-06-01 22:20:06 +03:00
archives:
2021-08-07 23:26:41 +03:00
- format: zip
replacements:
darwin: macOS
checksum:
2021-08-09 16:25:43 +03:00
algorithm: sha256