forked from rajlearner17/steampipe-plugin-pokemon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.goreleaser.yaml
38 lines (36 loc) · 851 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
# This is an example goreleaser.yaml file with some sane defaults.
# Make sure to check the documentation at http://goreleaser.com
before:
hooks:
- go mod tidy
builds:
- env:
- CGO_ENABLED=0
- GO111MODULE=on
- GOPRIVATE=github.com/turbot
goos:
- linux
- darwin
#- windows #- not yet.....
goarch:
- amd64
- arm64
ignore:
- goos: darwin # docs suggest that darwin arm64 should compile, but doesnt...
goarch: arm64
id: 'steampipe-pokemon'
binary: '{{ .ProjectName }}.plugin'
archives:
- format: gz
name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}'
files:
- none*
checksum:
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
algorithm: sha256
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'