-
Notifications
You must be signed in to change notification settings - Fork 17
/
.goreleaser.yaml
161 lines (143 loc) · 4.71 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# .goreleaser.yml file
# https://github.com/robinovitch61/wander/
# Documentation at http://goreleaser.com
#
# Thanks to @neomantra for setup work on this https://github.com/robinovitch61/wander/issues/33
version: 2
project_name: wander
before:
hooks:
- go mod tidy
builds:
- binary: wander
env:
- CGO_ENABLED=0
goos:
- darwin
- freebsd
- linux
- windows
archives:
- format_overrides:
- goos: windows
format: zip
name_template: >-
{{ .ProjectName }}_{{ .Version }}_
{{- if eq .Os "darwin" }}Darwin
{{- else if eq .Os "linux" }}Linux
{{- else if eq .Os "windows" }}Windows
{{- else }}{{ .Os }}{{ end }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
universal_binaries:
- replace: true
release:
github:
owner: robinovitch61
name: wander
brews:
- name: wander
homepage: https://github.com/robinovitch61/wander
description: "An efficient terminal application/TUI for interacting with your HashiCorp Nomad cluster."
directory: Formula
commit_author:
name: "Leo Robinovitch"
email: "[email protected]"
commit_msg_template: "Brew formula update for {{ .ProjectName }} version {{ .Tag }}"
repository:
owner: robinovitch61
name: homebrew-tap
branch: main
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
aurs:
- name: "wander-bin"
homepage: "https://github.com/robinovitch61/wander"
description: "An efficient terminal application/TUI for interacting with your HashiCorp Nomad cluster."
maintainers:
- "Leo Robinovitch <[email protected]>"
license: "MIT"
private_key: "{{ .Env.AUR_KEY }}"
git_url: "ssh://[email protected]/wander-bin.git"
depends:
- "glibc"
commit_author:
name: "Leo Robinovitch"
email: "[email protected]"
skip_upload: auto
nix:
- name: wander
commit_author:
name: "Leo Robinovitch"
email: "[email protected]"
homepage: "https://github.com/robinovitch61/wander"
description: "An efficient terminal application/TUI for interacting with your HashiCorp Nomad cluster."
license: "mit" # must be lowercase
skip_upload: auto
repository:
owner: robinovitch61
name: nur-packages
branch: main
token: "{{ .Env.NUR_PACKAGES_GITHUB_TOKEN }}"
winget:
- name: wander
publisher: robinovitch61
license: MIT
copyright: "Leo Robinovitch"
homepage: https://github.com/robinovitch61/wander
short_description: "An efficient terminal application/TUI for interacting with your HashiCorp Nomad cluster."
package_identifier: "robinovitch61.wander"
repository:
owner: "robinovitch61"
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
name: winget-pkgs
branch: "{{.ProjectName}}-{{.Version}}"
pull_request:
enabled: true
draft: false
base:
owner: microsoft
name: winget-pkgs
branch: master
scoops:
- repository:
owner: "robinovitch61"
name: scoop-bucket
token: "{{ .Env.HOMEBREW_TAP_GITHUB_TOKEN }}"
commit_author:
name: goreleaserbot
email: [email protected]
homepage: https://github.com/robinovitch61/wander
description: "An efficient terminal application/TUI for interacting with your HashiCorp Nomad cluster."
license: MIT
chocolateys:
- owners: "Leo Robinovitch"
authors: "Leo Robinovitch"
project_url: https://github.com/robinovitch61/wander
url_template: "https://github.com/robinovitch61/wander/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
license_url: https://github.com/robinovitch61/wander/blob/main/LICENSE
require_license_acceptance: false
project_source_url: https://github.com/robinovitch61/wander
docs_url: https://github.com/robinovitch61/wander/blob/main/README.md
bug_tracker_url: https://github.com/robinovitch61/wander/issues
tags: "wander nomad hashicorp tui"
summary: "An efficient terminal application/TUI for interacting with your HashiCorp Nomad cluster."
description: |
# An efficient terminal application/TUI for interacting with your HashiCorp Nomad cluster.
https://github.com/robinovitch61/wander for installation, configuration, and usage instructions.
release_notes: "https://github.com/robinovitch61/wander/releases/tag/v{{ .Version }}"
api_key: "{{ .Env.CHOCOLATEY_API_KEY }}"
source_repo: "https://push.chocolatey.org/"
skip_publish: false
gomod:
proxy: true