nuclei/v2/.goreleaser.yml

51 lines
692 B
YAML
Raw Normal View History

2021-03-14 07:07:41 +00:00
before:
hooks:
- go mod tidy
2020-06-01 19:34:57 +00:00
builds:
- main: cmd/nuclei/main.go
binary: nuclei
id: nuclei-cli
env:
2021-06-15 16:01:56 +00:00
- CGO_ENABLED=0
goos: [windows,linux,darwin]
goarch: [amd64,386,arm,arm64]
2021-06-15 16:01:56 +00:00
ignore:
- goos: darwin
goarch: 386
2021-07-12 13:54:04 +00:00
- goos: windows
goarch: arm
2021-09-01 15:26:30 +00:00
- goos: windows
goarch: arm64
2021-06-15 16:01:56 +00:00
flags:
- -trimpath
- main: cmd/cve-annotate/main.go
binary: cve-annotate
id: annotate
env:
- CGO_ENABLED=0
goos: [linux]
goarch: [amd64]
2020-06-01 19:34:57 +00:00
archives:
2021-06-15 16:01:56 +00:00
- format: zip
id: nuclei
builds: [nuclei-cli]
2021-06-15 16:01:56 +00:00
replacements:
darwin: macOS
- format: zip
id: annotate
builds: [annotate]
name_template: "{{ .Binary }}"
2021-06-15 16:01:56 +00:00
checksum:
2021-09-01 15:26:30 +00:00
algorithm: sha256