-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
57 lines (56 loc) · 1.13 KB
/
.goreleaser.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
project_name: lc
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
goos:
- freebsd
- darwin
- windows
- linux
goarch:
- 386
- amd64
- arm
- arm64
archives:
- name_template: "{{ .ProjectName }}_{{ .Tag }}_{{ .Os }}_{{ .Arch }}"
id: homebrew
files:
- README.md
- CHANGELOG.md
- LICENSE
- static/*
format_overrides:
- goos: windows
format: zip
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ incpatch .Version }}"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^doc:"
- "^ci:"
- "^Merge pull request"
brews:
- ids:
- homebrew
name: lc
tap:
owner: wgpsec
name: homebrew-tap
branch: master
folder: Formula
url_template: "https://github.com/wgpsec/lc/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: "https://wiki.teamssix.com/lc"
description: "LC (List Cloud) is a multi-cloud attack surface asset enumeration tool."
skip_upload: auto
install: |-
bin.install "lc"