headscale/.goreleaser.yml

95 lines
2.1 KiB
YAML
Raw Permalink Normal View History

2022-01-30 16:56:28 +08:00
---
2021-06-14 15:17:23 +08:00
before:
hooks:
2023-04-07 18:29:47 +08:00
- go mod tidy -compat=1.20
2021-11-29 06:00:22 +08:00
release:
prerelease: auto
2021-06-14 15:17:23 +08:00
builds:
- id: headscale
main: ./cmd/headscale/headscale.go
2021-10-22 03:18:50 +08:00
mod_timestamp: "{{ .CommitTimestamp }}"
env:
- CGO_ENABLED=0
targets:
- darwin_amd64
- darwin_arm64
- freebsd_amd64
- linux_386
- linux_amd64
- linux_arm64
- linux_arm_5
- linux_arm_6
- linux_arm_7
flags:
- -mod=readonly
ldflags:
- -s -w -X github.com/juanfont/headscale/cmd/headscale/cli.Version=v{{.Version}}
2022-11-04 18:26:33 +08:00
tags:
- ts2019
2021-10-15 23:00:04 +08:00
2021-06-14 15:17:23 +08:00
archives:
- id: golang-cross
builds:
- darwin_amd64
- darwin_arm64
- freebsd_amd64
- linux_386
- linux_amd64
- linux_arm64
- linux_arm_5
- linux_arm_6
- linux_arm_7
name_template: "{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
2021-07-12 23:04:28 +08:00
format: binary
2021-06-14 15:17:23 +08:00
nfpms:
# Configure nFPM for .deb and .rpm releases
#
# See https://nfpm.goreleaser.com/configuration/
# and https://goreleaser.com/customization/nfpm/
#
# Useful tools for debugging .debs:
# List file contents: dpkg -c dist/headscale...deb
# Package metadata: dpkg --info dist/headscale....deb
#
- builds:
- headscale
package_name: headscale
priority: optional
vendor: headscale
maintainer: Kristoffer Dalby <kristoffer@dalby.cc>
homepage: https://github.com/juanfont/headscale
license: BSD
bindir: /usr/bin
formats:
- deb
- rpm
contents:
- src: ./config-example.yaml
dst: /etc/headscale/config.yaml
type: config|noreplace
file_info:
mode: 0644
- src: ./docs/packaging/headscale.systemd.service
dst: /etc/systemd/system/headscale.service
- dst: /var/lib/headscale
type: dir
- dst: /var/run/headscale
type: dir
scripts:
postinstall: ./docs/packaging/postinstall.sh
postremove: ./docs/packaging/postremove.sh
2021-06-14 15:17:23 +08:00
checksum:
2021-10-22 03:18:50 +08:00
name_template: "checksums.txt"
2021-06-14 15:17:23 +08:00
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
2021-10-22 03:18:50 +08:00
- "^docs:"
- "^test:"