forked from terraform-docs/terraform-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
83 lines (74 loc) · 2.09 KB
/
.goreleaser.yml
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
project_name: terraform-docs
builds:
- main: .
env:
- CGO_ENABLED=0
ldflags:
- -s -w
- -X github.com/terraform-docs/terraform-docs/internal/version.commit={{ .ShortCommit }}
goos:
- darwin
- linux
- freebsd
- windows
goarch:
- amd64
- arm64
- arm
ignore:
- goos: darwin
goarch: arm
- goos: windows
goarch: arm
archives:
- format: tar.gz
name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md
checksum:
name_template: "{{ .ProjectName }}-{{ .Tag }}.sha256sum"
snapshot:
name_template: "{{ .Tag }}-dev"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
dockers:
- dockerfile: scripts/release/Dockerfile
image_templates:
- "quay.io/terraform-docs/terraform-docs:latest"
- "quay.io/terraform-docs/terraform-docs:{{ .RawVersion }}"
brews:
- tap:
owner: terraform-docs
name: homebrew-tap
commit_author:
name: terraform-docs-bot
email: [email protected]
url_template: "https://github.com/terraform-docs/terraform-docs/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: "https://github.com/terraform-docs/"
description: "Generate documentation from Terraform modules in various output formats"
test: |
system "#{bin}/terraform-docs version"
scoop:
bucket:
owner: terraform-docs
name: scoop-bucket
commit_author:
name: terraform-docs-bot
email: [email protected]
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
url_template: "https://github.com/terraform-docs/terraform-docs/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: "https://github.com/terraform-docs/"
description: "Generate documentation from Terraform modules in various output formats"
license: MIT
# Uncomment these lines if you want to experiment with other
# parts of the release process without releasing new binaries.
# release:
# disable: true