We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a73cd4f commit a931cb9Copy full SHA for a931cb9
.gitignore
@@ -1,2 +1,3 @@
1
.vscode/
2
prof.out
3
+dist/
.goreleaser.yaml
@@ -0,0 +1,24 @@
+before:
+ hooks:
+ - go mod tidy
4
+builds:
5
+ - env:
6
+ - CGO_ENABLED=0
7
+ main: ./cmd/gachinator/main.go
8
+ goos:
9
+ - linux
10
+ - windows
11
+ - darwin
12
+archives:
13
+ - replacements:
14
+ darwin: Darwin
15
+ linux: Linux
16
+ windows: Windows
17
+ 386: i386
18
+ amd64: x86_64
19
+checksum:
20
+ name_template: 'checksums.txt'
21
+snapshot:
22
+ name_template: '{{ incpatch .Version }}-next'
23
+changelog:
24
+ sort: asc
cmd/gachinator/gachinator.go cmd/gachinator/main.go
0 commit comments