File: .goreleaser.yaml

package info (click to toggle)
golang-github-prometheus-community-pro-bing 0.7.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 316 kB
  • sloc: makefile: 30
file content (46 lines) | stat: -rw-r--r-- 781 bytes parent folder | download | duplicates (6)
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
project_name: ping
before:
  hooks:
  - go mod download
builds:
- binary: ping
  dir: cmd/ping
  goarch:
  - amd64
  - arm
  - arm64
  goarm:
  - 6
  - 7
  goos:
  - darwin
  - freebsd
  - linux
  - windows
archives:
- files:
  - LICENSE
  - README.md
  format_overrides:
  - goos: windows
    format: zip
  wrap_in_directory: true
# TODO: Decide if we want packages (name conflcits with /bin/ping?)
# nfpms:
#   homepage: https://github.com/go-ping/ping
#   maintainer: 'Go Ping Maintainers <go-ping@example.com>'
#   description: Ping written in Go.
#   license: MIT
#   formats:
#   - deb
#   - rpm
checksum:
  name_template: 'checksums.txt'
snapshot:
  name_template: "{{ .Tag }}-{{ .ShortCommit }}"
changelog:
  sort: asc
  filters:
    exclude:
    - '^docs:'
    - '^test:'