Skip to content

Commit ead6f8d

Browse files
committed
add goreleaser config
1 parent 144ed94 commit ead6f8d

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.goreleaser.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
project_name: gitpert
2+
before:
3+
hooks:
4+
- go mod tidy
5+
builds:
6+
-
7+
main: ./cmd/gitpert.go
8+
env:
9+
- CGO_ENABLED=0
10+
brews:
11+
-
12+
github:
13+
owner: augmentable-dev
14+
name: homebrew-tickgit
15+
commit_author:
16+
name: augmentable
17+
18+
homepage: "https://augmentable.io/"
19+
description: "gitpert measures the "pertinence" of git authors as a time-decayed measure of LOC added and removed to a repository (or a set of files in a repository)."
20+
21+
archives:
22+
- replacements:
23+
darwin: Darwin
24+
linux: Linux
25+
windows: Windows
26+
386: i386
27+
amd64: x86_64
28+
checksum:
29+
name_template: 'checksums.txt'
30+
snapshot:
31+
name_template: "{{ .Tag }}-next"
32+
changelog:
33+
sort: asc
34+
filters:
35+
exclude:
36+
- '^docs:'
37+
- '^test:'

0 commit comments

Comments
 (0)