-
Notifications
You must be signed in to change notification settings - Fork 6
/
.goreleaser.yaml
59 lines (51 loc) · 1.3 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
# Goignore Build Configuration
builds:
- binary: goignore
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
flags:
- -mod=vendor
#ldflags:
#- -s -w -X goignore/cmd/utils.CLI_VERSION={{.Version}}
release:
prerelease: auto
universal_binaries:
- replace: true
archives:
- id: foo
name_template: >-
{{ .ProjectName }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
checksum:
name_template: "checksums.txt"
brews:
- name: goignore
homepage: https://github.com/hacktivist123/goignore
tap:
owner: hacktivist123
name: homebrew-goignore
commit_author:
name: hacktivist123
email: [email protected]
scoop:
url_template: "https://github.com/hacktivist123/goignore/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: hacktivist123
name: scoop-goignore
folder: scoops
commit_author:
name: hacktivist123
email: [email protected]
#commit_msg_template: "Update goignore to version {{ .Tag }}"
homepage: "https://github.com/hacktivist123/goignore"
description: "A lightweight CLI tool for generating .gitignore file in your project."