This repository has been archived by the owner on Sep 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.goreleaser.yml
99 lines (83 loc) · 2.05 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
project_name: secman
env:
- CGO_ENABLED=0
release:
prerelease: auto
draft: true
name_template: "Secman {{ .Tag }}"
before:
hooks:
- go mod tidy -compat=1.18
builds:
- <<: &build_defaults
binary: bin/secman
main: ./
ldflags:
- -X main.version={{ .Tag }}
- -X main.buildDate={{ .Env.BuildDate }}
id: macos
goos: [ darwin ]
goarch: [ amd64, arm64, arm ]
- <<: *build_defaults
id: linux
goos: [ linux ]
goarch: [ amd64, arm64, arm, 386 ]
- <<: *build_defaults
id: windows
goos: [ windows ]
goarch: [ amd64, arm64, arm, 386 ]
- <<: *build_defaults
id: freebsd
goos: [ freebsd ]
goarch: [ amd64, arm64, arm, 386 ]
archives:
- id: unix
builds: [ macos, linux, freebsd ]
<<: &archive_defaults
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Tag }}_{{ .Arch }}"
wrap_in_directory: "true"
replacements:
darwin: macos
format: zip
files:
- LICENSE
- id: windows
builds: [windows]
<<: *archive_defaults
wrap_in_directory: "false"
format: zip
files:
- LICENSE
nfpms:
- license: MIT
maintainer: secman
homepage: https://secman.dev
bindir: /usr
file_name_template: "{{ .ProjectName }}_{{ .Tag }}_{{ .Arch }}"
description: "👊 Human-friendly and amazing TUI secrets manager"
formats:
- apk
- deb
- rpm
brews:
- goarm: 6
tap:
owner: scmn-dev
name: homebrew-tap
homepage: "https://secman.dev"
description: "👊 Human-friendly and amazing TUI secrets manager"
license: MIT
post_install: system "npm install --global @secman/scc"
scoop:
url_template: "https://github.com/scmn-dev/secman/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: scmn-dev
name: scoop
homepage: "https://secman.dev"
description: "👊 Human-friendly and amazing TUI secrets manager"
license: MIT
post_install: ["npm install --global @secman/scc"]
checksum:
name_template: "checksums.txt"
snapshot:
name_template: "{{ .Version }}-next"