forked from skeema/skeema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yml
54 lines (54 loc) · 1.2 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
builds:
-
binary: skeema
env:
- CGO_ENABLED=0
targets:
- linux_amd64
- linux_arm64
- darwin_amd64
- darwin_arm64
archives:
-
name_template: >-
{{- .ProjectName }}_
{{- .Version }}_
{{- if eq .Os "darwin" }}mac{{ else }}{{ .Os }}{{ end }}_
{{- .Arch }}
checksum:
name_template: '{{ .ProjectName }}_checksums_{{ .Version }}.txt'
snapshot:
name_template: "{{ .Tag }}-next"
changelog:
sort: asc
filters:
exclude:
- '(?i)^docs:'
- '(?i)^help'
- '(?i)^internal'
- '(?i)^readme:'
- '(?i)^goreleaser:'
nfpms:
-
file_name_template: '{{ .ProjectName }}_{{ .Arch }}'
homepage: https://www.skeema.io
description: Schema management CLI for MySQL
maintainer: Evan Elias <[email protected]>
license: Apache 2.0
vendor: Skeema LLC
formats:
- deb
- rpm
- apk
brews:
-
name: skeema
tap:
owner: dashhudson
name: homebrew-tap
commit_author:
name: goreleaser
email: [email protected]
folder: Formula
homepage: https://www.skeema.io/
description: "Skeema is a tool for managing MySQL tables and schema changes in a declarative fashion using pure SQL."