-
Notifications
You must be signed in to change notification settings - Fork 7
/
.goreleaser.yml
79 lines (70 loc) · 1.63 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
project_name: compass
release:
prerelease: auto
before:
hooks:
- go mod tidy
- make clean
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
- "^build:"
builds:
- id: compass
main: ./main.go
binary: compass
flags: [-a]
ldflags:
- -X github.com/raystack/compass/cli.Version={{.Tag}}
- -X github.com/raystack/compass/cli.BuildCommit={{.FullCommit}}
- -X github.com/raystack/compass/cli.BuildDate={{.Date}}
goos: [linux, darwin, windows]
goarch: [amd64, 386, arm, arm64]
env:
- CGO_ENABLED=0
archives:
- id: "archives"
format_overrides:
- goos: windows
format: zip
dockers:
- id: dockerhub
image_templates:
- "docker.io/raystack/{{.ProjectName}}:latest"
- "docker.io/raystack/{{.ProjectName}}:{{ .Version }}"
- "docker.io/raystack/{{.ProjectName}}:{{ .Tag }}-amd64"
nfpms:
- maintainer: Raystack
description: Data catalog service
homepage: https://github.com/raystack/compass
license: Apache 2.0
formats:
- deb
- rpm
- apk
scoops:
- homepage: "https://github.com/raystack/compass"
description: "Data catalog service"
license: Apache 2.0
bucket:
owner: raystack
name: scoop-bucket
brews:
- name: compass
homepage: "https://github.com/raystack/compass"
description: "Data catalog service"
tap:
owner: raystack
name: homebrew-tap
license: "Apache 2.0"
folder: Formula
dependencies:
- name: git
install: |-
bin.install "compass"
commit_author:
name: Ravi Suhag
email: [email protected]