-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.goreleaser.yml
More file actions
72 lines (66 loc) · 1.84 KB
/
.goreleaser.yml
File metadata and controls
72 lines (66 loc) · 1.84 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
version: 2
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
flags:
- -trimpath
ldflags:
- -s -w -X main.version={{.Tag}} -X main.Date={{.CommitDate}}
mod_timestamp: '{{.CommitTimestamp}}'
archives:
- formats:
- binary
name_template: >-
{{ .ProjectName }}_
{{- if eq .Os "linux" }}Linux
{{- else }}{{ .Os }}{{ end }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
checksum:
name_template: 'checksums.txt'
snapshot:
version_template: '{{ .Tag }}-snapshot-{{ .ShortCommit }}'
changelog:
use: github-native
release:
# If set to auto, will mark the release as not ready for production
# in case there is an indicator for this in the tag e.g. v1.0.0-rc1
# If set to true, will mark the release as not ready for production.
# Default is false.
prerelease: auto
nfpms:
-
vendor: Arne Jørgensen
maintainer: Arne Jørgensen <arne@arnested.dk>
description: Local Docker Development DNS
license: MIT
formats:
- deb
dependencies:
- avahi-daemon
- docker.io | docker-ce
- libsystemd0
bindir: /usr/libexec
changelog: ./changelog.yml
contents:
- src: systemd/ldddns.service
dst: /lib/systemd/system/ldddns.service
- src: deb/ldddns.sources
dst: /etc/apt/sources.list.d/ldddns.sources
- src: deb/ldddns.gpg
dst: /usr/share/keyrings/ldddns.gpg
- src: deb/ldddns.8
dst: /usr/share/man/man8/ldddns.8
scripts:
postinstall: "deb/postinstall.sh"
preremove: "deb/preremove.sh"
postremove: "deb/postremove.sh"
announce:
bluesky:
enabled: true
message_template: 'ldddns {{.Tag}} is out! Get it at https://ldddns.arnested.dk or run `apt update && apt upgrade`.'
username: "ldddns.arnested.dk"