-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
58 lines (52 loc) · 1.15 KB
/
Copy path.goreleaser.yml
File metadata and controls
58 lines (52 loc) · 1.15 KB
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
# goreleaser configuration
# More info: https://goreleaser.com/quick-start/
version: 2
builds:
- id: tailscale-bind-ddns
binary: tailscale-bind-ddns
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
ldflags:
- -s -w
- -X main.version={{.Version}}
- -X main.commit={{.Commit}}
- -X main.date={{.Date}}
archives:
- id: tailscale-bind-ddns
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: windows
format: zip
- goos: '*'
format: tar.gz
files:
- config.yaml.example
- README.md
- LICENSE
checksum:
name_template: "{{ .ProjectName }}_{{ .Version }}_checksums.txt"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
release:
github:
owner: aauren
name: tailscale-bind-ddns
draft: true
prerelease: false
mode: replace
header: |
## Tailscale-Bind DDNS {{ .Tag }}
### What's Changed
footer: |
**Full Changelog**: https://github.com/aauren/tailscale-bind-ddns/compare/{{ .PreviousTag }}...{{ .Tag }}