-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
89 lines (72 loc) · 1.58 KB
/
.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
before:
hooks:
builds:
-
id: build
main: ./cmd/dyndns
binary: dyndns
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
ignore:
- goos: windows
goarch: arm64
ldflags:
- -s
- -w
- -X github.com/gertd/dyndns/pkg/version.ver={{.Version}}
- -X github.com/gertd/dyndns/pkg/version.commit={{.ShortCommit}}
- -X github.com/gertd/dyndns/pkg/version.date={{.Date}}
mod_timestamp: '{{ .CommitTimestamp }}'
archives:
- format: zip
replacements:
darwin: darwin
linux: linux
windows: windows
amd64: amd64
files:
- LICENSE
- README.md
name_template: "dyndns-{{ .Version }}-{{ .Os }}-{{ .Arch }}"
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
github:
owner: gertd
name: dyndns
draft: false
prerelease: false
name_template: "dyndns {{.Tag}}"
brews:
- name: dyndns
tap:
owner: gertd
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP }}"
url_template: "https://github.com/gertd/dyndns/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: Gert Drapers
email: [email protected]
homepage: "https://github.com/gertd/dyndns"
description: "Dynamic DNS configurator for namecheap.com"
license: "MIT"
skip_upload: false
test: |
system "#{bin}/dyndns version"
install: |
bin.install "dyndns"