We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f15746 commit 137a377Copy full SHA for 137a377
.gitignore
@@ -10,3 +10,6 @@
10
11
# Output of the go coverage tool, specifically when used with LiteIDE
12
*.out
13
+
14
+dist/
15
+logs/
.goreleaser.yaml
@@ -0,0 +1,26 @@
1
+# This is an example .goreleaser.yml file with some sensible defaults.
2
+# Make sure to check the documentation at https://goreleaser.com
3
+before:
4
+ hooks:
5
+ - go mod tidy
6
+builds:
7
+ - env:
8
+ - CGO_ENABLED=0
9
+ goos:
+ - linux
+ goarch:
+ - amd64
+ - arm
+ - arm64
+archives:
16
+ - format: binary
17
+checksum:
18
+ name_template: 'checksums.txt'
19
+snapshot:
20
+ name_template: "{{ incpatch .Version }}-next"
21
+changelog:
22
+ sort: asc
23
+ filters:
24
+ exclude:
25
+ - '^docs:'
26
+ - '^test:'
0 commit comments