-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy path.goreleaser.yml
54 lines (54 loc) · 1.23 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:
- main: main.go
binary: qovery
ldflags:
- -s -w -X github.com/qovery/qovery-cli/utils.Version={{ .Version }}
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64
archives:
- format_overrides:
- goos: windows
format: zip
checksum:
name_template: 'checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
brews:
- name: qovery-cli
goarm: 6
tap:
owner: qovery
name: homebrew-qovery-cli
url_template: "https://github.com/Qovery/qovery-cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
commit_author:
name: qovery
email: [email protected]
folder: Formula
homepage: "https://docs.qovery.com"
description: "Deploy modern application in seconds"
skip_upload: false
install: |
bin.install "qovery"
scoop:
url_template: "https://github.com/Qovery/qovery-cli/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
bucket:
owner: qovery
name: scoop-qovery-cli
commit_author:
name: qovery
email: [email protected]
homepage: "https://docs.qovery.com"
description: "Deploy modern application in seconds"
license: GPL3
persist:
- "data"
- "config.toml"