Skip to content

Commit 64959e7

Browse files
committed
Add goreleaser config file
1 parent 5ca7b04 commit 64959e7

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

.goreleaser.yml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
before:
2+
hooks:
3+
- go mod download
4+
- go generate ./...
5+
builds:
6+
- env:
7+
- CGO_ENABLED=0
8+
archives:
9+
- replacements:
10+
darwin: Darwin
11+
linux: Linux
12+
windows: Windows
13+
386: i386
14+
amd64: x86_64
15+
checksum:
16+
algorithm: sha256
17+
snapshot:
18+
name_template: "{{ .Tag }}-next"
19+
changelog:
20+
sort: asc
21+
filters:
22+
exclude:
23+
- '^docs:'
24+
- '^test:'
25+
brews:
26+
- # Name of the project
27+
name: fngprint
28+
29+
# Repository to push the tap to
30+
github:
31+
owner: nejckorasa
32+
name: homebrew-tap
33+
34+
# Git author used to commit to the repository
35+
commit_author:
36+
name: nejckorasa
37+
email: nejc.korasa@gmail.com
38+
39+
# Folder inside the repository to put the formula.
40+
folder: Formula
41+
42+
homepage: "https://github.com/nejckorasa/dir-fingerprint/"
43+
44+
# Your app's description.
45+
description: "Application to create and store directory fingerprint from all its files in a tree"
46+
47+
skip_upload: false

0 commit comments

Comments
 (0)