File tree Expand file tree Collapse file tree 2 files changed +55
-0
lines changed Expand file tree Collapse file tree 2 files changed +55
-0
lines changed Original file line number Diff line number Diff line change 1+ # Visit https://goreleaser.com for documentation on how to customize this
2+ # behavior.
3+ before :
4+ hooks :
5+ - go mod tidy
6+ builds :
7+ - env :
8+ - CGO_ENABLED=0
9+ mod_timestamp : ' {{ .CommitTimestamp }}'
10+ flags :
11+ - -trimpath
12+ ldflags :
13+ - ' -s -w -X main.version={{.Version}} -X main.commit={{.Commit}}'
14+ goos :
15+ - freebsd
16+ - windows
17+ - linux
18+ - darwin
19+ goarch :
20+ - amd64
21+ - ' 386'
22+ - arm
23+ - arm64
24+ ignore :
25+ - goos : darwin
26+ goarch : ' 386'
27+ binary : ' {{ .ProjectName }}_v{{ .Version }}'
28+ archives :
29+ - format : zip
30+ name_template : ' {{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
31+ checksum :
32+ name_template : ' {{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
33+ algorithm : sha256
34+ signs :
35+ - artifacts : checksum
36+ args :
37+ # if you are using this is a GitHub action or some other automated pipeline, you
38+ # need to pass the batch flag to indicate its not interactive.
39+ - " --batch"
40+ - " --local-user"
41+ - " {{ .Env.GPG_FINGERPRINT }}" # set this environment variable for your signing key
42+ - " --output"
43+ - " ${signature}"
44+ - " --detach-sign"
45+ - " ${artifact}"
46+ release :
47+ # Visit your project's GitHub Releases page to publish this release.
48+ draft : true
49+ changelog :
50+ skip : true
Original file line number Diff line number Diff line change 11## 1.39.0 (Unreleased)
2+
3+ ENHANCEMENTS:
4+
5+ * upgrade terraform 0.13
6+
27## 1.38.3 (July 13, 2020)
38
49ENHANCEMENTS:
You can’t perform that action at this time.
0 commit comments