-
-
Notifications
You must be signed in to change notification settings - Fork 648
Expand file tree
/
Copy path.goreleaser.yml
More file actions
67 lines (59 loc) · 1.36 KB
/
Copy path.goreleaser.yml
File metadata and controls
67 lines (59 loc) · 1.36 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
version: 2
project_name: witr
builds:
- id: witr
main: ./cmd/witr
binary: witr
goos:
- linux
- darwin
- freebsd
- windows
goarch:
- amd64
- arm64
env:
- CGO_ENABLED=0
flags:
- -trimpath
ldflags:
- -s -w
- -X github.com/pranshuparmar/witr/internal/version.Version=v{{ .Version }}
- -X github.com/pranshuparmar/witr/internal/version.Commit={{ .Commit }}
- -X github.com/pranshuparmar/witr/internal/version.BuildDate={{ .Date }}
archives:
- id: binaries
formats:
- binary
format_overrides:
- goos: windows
formats: [ 'zip' ]
ids:
- witr
name_template: "witr-{{ .Os }}-{{ .Arch }}"
checksum:
name_template: SHA256SUMS
algorithm: sha256
nfpms:
- id: witr
package_name: witr
file_name_template: "witr-{{ .Version }}-{{ .Os }}-{{ .Arch }}"
formats:
- apk
- deb
- rpm
maintainer: Pranshu Parmar <pranshu.parmar@gmail.com>
description: witr explains why a process or port is running by tracing its ancestry.
homepage: https://github.com/pranshuparmar/witr
license: Apache-2.0
contents:
- src: docs/cli/witr.1
dst: /usr/share/man/man1/witr.1
file_info:
mode: 0644
changelog:
sort: asc
use: github-native
release:
extra_files:
- glob: docs/cli/witr.1