-
Notifications
You must be signed in to change notification settings - Fork 277
/
.goreleaser.yml
79 lines (72 loc) · 2.18 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
version: 2
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
- GO111MODULE=on
goos:
- linux
- darwin
goarch:
- amd64
- arm64
id: "steampipe"
binary:
'steampipe'
archives:
- files:
- none*
format: zip
id: homebrew
name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
format_overrides:
- goos: linux
format: tar.gz
nfpms:
- id: "steampipe"
builds: ['steampipe']
formats:
- deb
- rpm
vendor: "steampipe.io"
homepage: "https://steampipe.io/"
maintainer: "Turbot Support <[email protected]>"
description: "Use SQL to instantly query your cloud services (AWS, Azure, GCP and more). Open source CLI. No DB required."
file_name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
rpm:
summary: "Use SQL to instantly query your cloud services (AWS, Azure, GCP and more). Open source CLI. No DB required."
# it is necessary to specify the name_template of the snapshot, or else the snapshot gets created with
# two dash(-) which results in a 500 error while downloading
snapshot:
name_template: '{{ .Version }}'
# snapcrafts:
# - id: "steampipe"
# builds: ['steampipe']
# description: "Use SQL to instantly query your cloud services (AWS, Azure, GCP and more). Open source CLI. No DB required."
# summary: "Snap package"
# name_template: "{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}"
checksum:
name_template: 'checksums.txt'
release:
# Visit your project's GitHub Releases page to publish this release.
draft: true
changelog:
disable: true
brews:
-
ids:
- homebrew
name: steampipe@{{ .Major }}.{{ .Minor }}.{{ .Patch }}
repository:
owner: turbot
name: homebrew-tap
branch: bump-brew
directory: Formula
url_template: "https://github.com/turbot/steampipe/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
homepage: "https://steampipe.io/"
description: "Steampipe exposes APIs and services as a high-performance relational database, giving you the ability to write SQL-based queries to explore, assess and report on dynamic data."
skip_upload: auto
install: |-
bin.install "steampipe"