forked from cloudquery/cq-provider-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
44 lines (43 loc) · 856 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
# DONT EDIT. This file is synced from https://github.com/cloudquery/.github
before:
hooks:
- go mod download
builds:
- flags:
- -buildmode=exe
env:
- CGO_ENABLED=0
- GO111MODULE=on
ldflags:
- -s -w -X github.com/cloudquery/cq-provider-aws/resources/provider.Version={{.Version}}
goos:
- windows
- linux
- darwin
goarch:
- amd64
- arm64
ignore:
- goos: windows
goarch: arm64
archives:
- name_template: "{{ .Binary }}_{{ .Os }}_{{ .Arch }}"
format: binary
checksum:
name_template: "checksums.txt"
changelog:
sort: asc
filters:
exclude:
- "^docs:"
- "^test:"
signs:
- artifacts: checksum
args:
- "--batch"
- "--output"
- "${signature}"
- "--detach-sign"
- "${artifact}"
release:
prerelease: auto