We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents de230b8 + f36f0a8 commit 2c94d92Copy full SHA for 2c94d92
.gitignore
@@ -0,0 +1 @@
1
+dist/
.goreleaser.yml
@@ -0,0 +1,30 @@
+env:
2
+ - GO111MODULE=on
3
+before:
4
+ hooks:
5
+ - go mod download
6
+builds:
7
+ -
8
+ env:
9
+ - CGO_ENABLED=0
10
+ goos:
11
+ - linux
12
+ goarch:
13
+ - amd64
14
+archive:
15
+ replacements:
16
+ darwin: Darwin
17
+ linux: Linux
18
+ windows: Windows
19
+ 386: i386
20
+ amd64: x86_64
21
+checksum:
22
+ name_template: 'checksums.txt'
23
+snapshot:
24
+ name_template: "{{ .Tag }}-next"
25
+changelog:
26
+ sort: asc
27
+ filters:
28
+ exclude:
29
+ - '^docs:'
30
+ - '^test:'
0 commit comments