forked from xataio/pgroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.goreleaser.yaml
49 lines (43 loc) · 892 Bytes
/
.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
project_name: pgroll
before:
hooks:
- go mod tidy
builds:
- id: build_noncgo
binary: pgroll
ldflags:
- -X github.com/xataio/pgroll/cmd.Version={{ .Version }}
env:
- CGO_ENABLED=0
goos:
- linux
- windows
- darwin
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: arm64
release:
draft: true
brews:
- name: pgroll
homepage: "https://www.xata.io"
description: "Postgres zero-downtime migrations made easy"
license: "Apache-2.0"
repository:
owner: xataio
name: homebrew-pgroll
archives:
- format: binary
name_template: >-
{{ .ProjectName }}.{{ if eq .Os "windows" }}win{{ else if eq .Os "darwin" }}macos{{ else }}{{ .Os }}{{ end }}.{{ .Arch }}
files:
- LICENSE*
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"