mirror of
https://github.com/projectdiscovery/subfinder
synced 2026-06-21 14:05:24 +00:00
e6ed1e1b72
* Change file extension to .yml for consistency * Move permissions for clarity and consistency * Change compat-checks action from @master to @v1 The action should be pinned to a stable ref such as @v1, consistent with the documentation and how other PD projects reference it. * Fix indentations and whitespaces in workflows
47 lines
913 B
YAML
47 lines
913 B
YAML
version: 2
|
|
|
|
before:
|
|
hooks:
|
|
- go mod tidy
|
|
|
|
builds:
|
|
- env:
|
|
- CGO_ENABLED=0
|
|
goos:
|
|
- windows
|
|
- linux
|
|
- darwin
|
|
goarch:
|
|
- amd64
|
|
- '386'
|
|
- arm
|
|
- arm64
|
|
|
|
ignore:
|
|
- goos: darwin
|
|
goarch: '386'
|
|
- goos: windows
|
|
goarch: 'arm'
|
|
|
|
binary: '{{ .ProjectName }}'
|
|
main: cmd/subfinder/main.go
|
|
|
|
archives:
|
|
- formats:
|
|
- zip
|
|
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ if eq .Os "darwin" }}macOS{{ else }}{{ .Os }}{{ end }}_{{ .Arch }}'
|
|
|
|
checksum:
|
|
algorithm: sha256
|
|
|
|
announce:
|
|
slack:
|
|
enabled: true
|
|
channel: '#release'
|
|
username: GoReleaser
|
|
message_template: 'New Release: {{ .ProjectName }} {{.Tag}} is published! Check it out at {{ .ReleaseURL }}'
|
|
|
|
discord:
|
|
enabled: true
|
|
message_template: '**New Release: {{ .ProjectName }} {{.Tag}}** is published! Check it out at {{ .ReleaseURL }}'
|