Skip to content

Commit 16bb6ac

Browse files
authored
Setup GoReleaser (#24)
1 parent 2ccaff4 commit 16bb6ac

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

.goreleaser.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# This is an example goreleaser.yaml file with some sane defaults.
2+
# Make sure to check the documentation at http://goreleaser.com
3+
env:
4+
- CGO_ENABLED=0
5+
builds:
6+
- goos:
7+
- linux
8+
- darwin
9+
- freebsd
10+
- netbsd
11+
- openbsd
12+
- windows
13+
goarch:
14+
- 386
15+
- amd64
16+
- arm
17+
archives:
18+
- id: zip
19+
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
20+
format: zip
21+
files:
22+
- none*
23+
changelog:
24+
skip: true
25+
checksum:
26+
name_template: 'checksums.txt'
27+
release:
28+
github:
29+
owner: terraform-linters
30+
name: tflint-ruleset-aws
31+
draft: true
32+
snapshot:
33+
name_template: "{{ .Tag }}-dev"

0 commit comments

Comments
 (0)