-
Notifications
You must be signed in to change notification settings - Fork 3
/
.goreleaser.yml
99 lines (93 loc) · 2.27 KB
/
.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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# goreleaser.yml
# Release automation
#
# Build customization
project_name: gopass-summon-provider
before:
hooks:
- make clean
- make completion
- go mod download
builds:
- id: gopass-summon-provider
binary: gopass-summon-provider
flags:
- -trimpath
- -tags=netgo
env:
- CGO_ENABLED=0
asmflags:
- all=-trimpath={{.Env.GOPATH}}
gcflags:
- all=-trimpath={{.Env.GOPATH}}
ldflags: |
-s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.CommitDate}} -extldflags '-static'
goos:
- darwin
- freebsd
- linux
- openbsd
- windows
goarch:
- amd64
- arm
- arm64
goarm:
- 6
- 7
mod_timestamp: '{{ .CommitTimestamp }}'
archives:
- id: gopass-summon-provider
name_template: "{{.Binary}}-{{.Version}}-{{.Os}}-{{.Arch}}{{ if .Arm }}v{{.Arm }}{{ end }}"
format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- CHANGELOG.md
- LICENSE
- README.md
release:
github:
owner: gopasspw
name: gopass-summon-provider
draft: false
prerelease: auto
nfpms:
- id: gopass-summon-provider
vendor: Gopass Authors
homepage: "https://www.gopass.pw"
maintainer: "Gopass Authors <[email protected]>"
description: |-
gopass password manager - full featured CLI replacement for pass, designed for teams.
.
gopass is a simple but powerful password manager for your terminal. It is a
Pass implementation in Go that can be used as a drop in replacement.
.
Every secret lives inside of a gpg (or: age) encrypted textfile. These secrets
can be organized into meaninful hierachies and are by default versioned using
git.
.
This package contains the summon provider.
license: MIT
formats:
- deb
- rpm
dependencies:
- git
- gnupg2
recommends:
- rng-tools
source:
enabled: true
name_template: "{{.ProjectName}}-{{.Version}}"
checksum:
name_template: "{{.ProjectName}}_{{.Version}}_SHA256SUMS"
milestones:
-
repo:
owner: gopasspw
name: gopass-summon-provider
close: true
fail_on_error: false
name_template: "{{ .Major }}.{{ .Minor }}.{{ .Patch }}"