-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy path.goreleaser.yaml
50 lines (50 loc) · 1.13 KB
/
.goreleaser.yaml
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
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
mod_timestamp: '{{ .CommitTimestamp }}'
flags:
- -trimpath
gomod:
proxy: true
checksum:
name_template: 'checksums.txt'
changelog:
sort: asc
use: github
brews:
- tap:
owner: orlangure
name: homebrew-tap
token: "{{ .Env.BREW_GITHUB_TOKEN }}"
folder: Formula
homepage: https://github.com/orlangure/gocovsh
description: 'Go Coverage in your terminal: a tool for exploring Go Coverage reports from the command line'
nfpms:
- homepage: https://github.com/orlangure/gocovsh
description: 'Go Coverage in your terminal: a tool for exploring Go Coverage reports from the command line'
maintainer: Yury Fedorov
license: GPL-3.0-only
vendor: Yury Fedorov
formats:
- apk
- deb
- rpm
signs:
- cmd: cosign
env:
- COSIGN_EXPERIMENTAL=1
certificate: '${artifact}.pem'
output: true
artifacts: checksum
args:
- sign-blob
- '--output-certificate=${certificate}'
- '--output-signature=${signature}'
- '${artifact}'