-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy path.goreleaser.yml
More file actions
81 lines (71 loc) · 1.49 KB
/
.goreleaser.yml
File metadata and controls
81 lines (71 loc) · 1.49 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
version: 2
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}}
goos: [linux, darwin, windows]
goarch: [amd64, arm64]
env:
- CGO_ENABLED=0
archives:
- id: "archives"
format_overrides:
- goos: windows
formats: [zip]
dockers_v2:
- images:
- "docker.io/raystack/{{.ProjectName}}"
tags:
- "latest"
- "{{ .Version }}"
- "{{ .Tag }}-amd64"
dockerfile: Dockerfile
build_flag_templates:
- "--target=release"
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
repository:
owner: raystack
name: scoop-bucket
homebrew_casks:
- name: compass
homepage: "https://github.com/raystack/compass"
description: "Data catalog service"
repository:
owner: raystack
name: homebrew-tap
license: "Apache 2.0"
directory: Casks
install: |-
bin.install "compass"
commit_author:
name: Ravi Suhag
email: suhag.ravi@gmail.com