-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
58 lines (58 loc) · 1.44 KB
/
.goreleaser.yml
File metadata and controls
58 lines (58 loc) · 1.44 KB
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
---
# This is an example .goreleaser.yml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
project_name: helmquilt
version: 2
before:
hooks:
- go vet ./...
- go test -v -race ./...
# You may remove this if you don't use go modules.
- go mod tidy
# you may remove this if you don't need go generate
- go generate ./...
builds:
- env:
- CGO_ENABLED=0
ldflags: -s -w -extldflags "-static"
flags:
- -trimpath
goos:
- linux
- windows
- darwin
archives:
- name_template: >-
{{ .ProjectName }}_
{{- if eq .Os "Darwin" }}macos_
{{- else }}{{- tolower .Os }}_{{end}}
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if .Arm }}v{{ .Arm }}{{ end }}
brews:
- name: helmquilt
repository:
owner: luisdavim
name: helmquilt
branch: main
directory: Formula
description: "Watch a command and generate diffs from the output changes"
homepage: "https://github.com/luisdavim/helmquilt"
license: "MIT"
download_strategy: CurlDownloadStrategy
install: |
bin.install "helmquilt"
test: |
system "#{bin}/helmquilt", "-h"
checksum:
name_template: "checksums.txt"
snapshot:
version_template: "{{ incpatch .Version }}-next"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^ci:"