generated from pulumi/pulumi-provider-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.goreleaser.yml
33 lines (33 loc) · 866 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
archives:
- id: archive
name_template: "{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}"
before:
hooks:
- make gen generate_schema
- make build
builds:
- binary: pulumi-resource-render
main: ./cmd/pulumi-resource-render/
dir: provider
env:
- GO111MODULE=on
goarch:
- amd64
- arm64
goos:
- windows
- linux
ldflags:
# The line below MUST align with the module in current provider/go.mod
- -X github.com/cloudy-sky-software/pulumi-render/provider/pkg/version.Version={{.Tag }}
checksum:
name_template: "{{ .ProjectName }}_linux_windows_checksums.txt"
changelog:
disable: true
release:
disable: false
prerelease: auto
header: |
See [CHANGELOG.md](https://github.com/cloudy-sky-software/pulumi-render/blob/main/CHANGELOG.md)
snapshot:
name_template: "{{ .Tag }}-SNAPSHOT"