-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yml
96 lines (82 loc) · 2.21 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
before:
hooks:
- make vendor
builds:
-
goos:
- freebsd
- windows
- darwin
- linux
goarch:
- amd64
- arm
- arm64
- 386
archives:
- replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- '^examples:'
brews:
-
# Github repository to push the tap to.
tap:
owner: thomaspoignant
name: homebrew-tap
caveats: "Run yamllint-checkstyle"
homepage: "https://github.com/thomaspoignant/yamllint-checkstyle"
description: "Convert yamllint output to checkstyle format."
skip_upload: auto
scoop:
# Template for the url which is determined by the given Token (github or gitlab)
url_template: "http://github.com/thomaspoignant/yamllint-checkstyle/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
# Repository to push the app manifest to.
bucket:
owner: thomaspoignant
name: scoop
# The project name and current git tag are used in the format string.
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
# Your app's homepage.
homepage: "https://github.com/thomaspoignant/yamllint-checkstyle#yamllint-checkstyle"
# Your app's description.
description: "Convert yamllint output to checkstyle format."
# Your app's license
license: Unlicence
nfpms:
-
# Replacements for GOOS and GOARCH in the package name.
# Keys should be valid GOOSs or GOARCHs.
# Values are the respective replacements.
replacements:
amd64: 64-bit
386: 32-bit
darwin: macOS
linux: Tux
# Your app's vendor.
vendor: API-Scenario.
# Your app's homepage.
homepage: https://github.com/thomaspoignant/yamllint-checkstyle#yamllint-checkstyle
# Your app's maintainer (probably you).
maintainer: Thomas Poignant <[email protected]>
# Your app's description.
description: Convert yamllint output to checkstyle format.
# Your app's license.
license: Unlicence
# Formats to be generated.
formats:
- deb
- rpm