Skip to content

Commit a931cb9

Browse files
committed
:constuction_worker: add goreleaser
1 parent a73cd4f commit a931cb9

File tree

3 files changed

+25
-0
lines changed

3 files changed

+25
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.vscode/
22
prof.out
3+
dist/

.goreleaser.yaml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
before:
2+
hooks:
3+
- 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
File renamed without changes.

0 commit comments

Comments
 (0)