-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.goreleaser.yml
44 lines (44 loc) · 1003 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
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
env:
- GO111MODULE=on
before:
hooks:
# You may remove this if you don't use go modules.
- go mod tidy
builds:
- main: cmd/nftrace/main.go
binary: nftrace
env:
- CGO_ENABLED=0
flags:
- -v
ldflags:
- -X github.com/eiginn/nftrace.BuildVersion={{.Version}}
goos:
- linux
goarch:
- amd64
- arm64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
nfpms:
- formats: [deb]
package_name: "nftrace"
section: "net"
priority: "optional"
maintainer: "Ryan Carter <[email protected]>"
description: Easier tracing of packets through iptables
homepage: "https://github.com/eiginn/nftrace"
license: "MIT"
dependencies:
- iptables
- libc6 (>= 2.26)