forked from snowflakedb/terraform-provider-snowflake
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
60 lines (56 loc) · 1.64 KB
/
.goreleaser.yml
File metadata and controls
60 lines (56 loc) · 1.64 KB
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
builds:
- env:
- >-
{{- if or (eq .Os "windows") (eq .Os "darwin") -}}
CGO_ENABLED=1
{{- else -}}
CGO_ENABLED=0
{{- end -}}
goos:
- windows
- linux
- darwin
- freebsd
goarch:
- amd64
- arm64
- '386'
flags:
- -trimpath
binary: '{{ .ProjectName }}_v{{ .Version }}'
archives:
- format: zip
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}'
checksum:
extra_files:
- glob: 'terraform-registry-manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_SHA256SUMS'
algorithm: sha256
# More on signing through GoReleaser: https://goreleaser.com/customization/sign/
signs:
- artifacts: checksum
args:
# This option tells GPG to run in non-interactive mode.
- "--batch"
# Specifies which key to use.
- "--local-user"
- "{{ .Env.GPG_FINGERPRINT }}"
# The pinentry loopback mode in GPG allows the passphrase to be provided programmatically (e.g., via the command line or a script) instead of requiring user interaction through a graphical or terminal-based pinentry prompt.
- "--pinentry-mode"
- "loopback"
- "--passphrase"
- "{{ .Env.GPG_PASSPHRASE }}"
# Signature file name output.
- "--output"
- "${signature}"
# Path to the artifact that will be signed.
- "--detach-sign"
- "${artifact}"
release:
github:
owner: snowflakedb
name: terraform-provider-snowflake
extra_files:
- glob: 'terraform-registry-manifest.json'
name_template: '{{ .ProjectName }}_{{ .Version }}_manifest.json'