-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
49 lines (49 loc) · 967 Bytes
/
.goreleaser.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
before:
hooks:
- make clean prepare
builds:
- ldflags: "-s -w -X main.Commit={{.ShortCommit}} -X main.Version={{.Version}}"
main: ./cmd/torresmo
goos:
- linux
- darwin
- windows
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .ShortCommit }}"
changelog:
sort: asc
filters:
exclude:
- '^Merge'
- typo
- cleanup
archives:
- files:
- LICENSE
- README.md
- VERSION
format_overrides:
- goos: windows
format: zip
release:
github:
owner: mvrilo
name: torresmo
draft: true
brews:
- tap:
owner: mvrilo
name: homebrew-taps
folder: Formula
homepage: https://github.com/mvrilo/torresmo/
description: Experimental torrent client and server
license: MIT
commit_author:
name: Murilo Santana
email: [email protected]
install: |-
bin.install "torresmo"
test: |
system "#{bin}/torresmo -v"