forked from streamingfast/substreams-sink-sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
66 lines (59 loc) · 1.36 KB
/
.goreleaser.yaml
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
env_files:
github_token: ~/.config/goreleaser/github_token
builds:
- id: substreams-sink-postgres
goos:
- linux
- darwin
goarch:
- linux_amd64
- darwin_amd64
- darwin_arm64
ldflags: -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
main: ./cmd/substreams-sink-postgres
env:
- CGO_ENABLED=0
archives:
- id: substreams-sink-postgres
name_template: '{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
builds:
- substreams-sink-postgres
replacements:
amd64: x86_64
darwin: macOS
linux: linux
format: tar.gz
files:
- LICENSE
- README.md
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpath .Version }}-next"
changelog:
sort: asc
signs:
- cmd: keybase
args:
- sign
- --infile
- $artifact
- --binary
- --outfile
- $signature
- --detached
signature: ${artifact}.sig
artifacts: checksum
brews:
- name: substreams-sink-postgres
ids:
- substreams-sink-postgres
tap:
owner: streamingfast
name: homebrew-tap
commit_author:
name: goreleaserbot
email: [email protected]
homepage: "https://github.com/streamingfast/substreams-sink-postgres"
description: "StreamingFast postgres load CLI"
license: "Apache-2.0"