-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
50 lines (43 loc) · 911 Bytes
/
.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
project_name: unweave
before:
hooks:
- go mod tidy
- go generate ./...
builds:
- id: unweave
main: ./main.go
binary: unweave
env:
- CGO_ENABLED=0
ldflags:
-w -s -X github.com/unweave/cli/config.Version={{.Version}}
goos:
- linux
- windows
- darwin
brews:
- tap:
owner: unweave
name: homebrew-unweave
commit_author:
name: goreleaserbot
email: [email protected]
homepage: "https://unweave.io"
description: "Supabase for Machine Learning"
test: |
system "#{bin}/unweave"
install: |
bin.install "unweave"
nfpms:
- maintainer: Unweave
homepage: https://github.com/unweave/cli
description: Unweave CLI
license: Apache-2.0
formats:
- deb
- apk
- rpm
checksum:
name_template: 'checksums.txt'
snapshot:
name_template: "{{ incpatch .Version }}-next"