nuclei/v2/.goreleaser.yml

58 lines
876 B
YAML
Raw Normal View History

2021-03-14 12:37:41 +05:30
before:
hooks:
- go mod tidy
2020-06-01 21:34:57 +02:00
builds:
- main: cmd/nuclei/main.go
binary: nuclei
id: nuclei-cli
env:
2021-06-15 21:31:56 +05:30
- CGO_ENABLED=0
goos: [windows,linux,darwin]
goarch: [amd64,386,arm,arm64]
2021-06-15 21:31:56 +05:30
ignore:
- goos: darwin
goarch: 386
2021-07-12 19:24:04 +05:30
- goos: windows
goarch: arm
2021-09-01 20:56:30 +05:30
- goos: windows
goarch: arm64
2021-06-15 21:31:56 +05:30
flags:
- -trimpath
- main: cmd/cve-annotate/main.go
binary: cve-annotate
id: annotate
env:
- CGO_ENABLED=0
goos: [linux]
goarch: [amd64]
2020-06-01 21:34:57 +02:00
archives:
2021-06-15 21:31:56 +05:30
- format: zip
id: nuclei
builds: [nuclei-cli]
2021-06-15 21:31:56 +05:30
replacements:
darwin: macOS
- format: zip
id: annotate
builds: [annotate]
name_template: "{{ .Binary }}"
2021-06-15 21:31:56 +05:30
checksum:
2021-09-01 20:56:30 +05:30
algorithm: sha256
2022-08-13 01:30:08 -07:00
announce:
slack:
enabled: true
channel: '#release'
username: GoReleaser
message_template: '{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}'