-
Notifications
You must be signed in to change notification settings - Fork 12
/
.goreleaser.yml
49 lines (49 loc) · 1009 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
dist: goreleaser
project_name: pulumi-yaml
version: 2
snapshot:
name_template: "{{ .Version }}-SNAPSHOT"
checksum:
name_template: "{{ .ProjectName }}-{{ .Version }}-checksums.txt"
archives:
- id: language
name_template: '{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}'
builds:
- pulumi-language-yaml
- id: converter
name_template: '{{ .Binary }}-{{ .Tag }}-{{ .Os }}-{{ .Arch }}'
builds:
- pulumi-converter-yaml
builds:
- id: pulumi-language-yaml
binary: pulumi-language-yaml
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- darwin
- windows
- linux
ldflags:
- -s
- -w
- -X github.com/pulumi/pulumi-yaml/pkg/version.Version={{.Tag}}
main: ./cmd/pulumi-language-yaml/
- id: pulumi-converter-yaml
binary: pulumi-converter-yaml
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- darwin
- windows
- linux
ldflags:
- -s
- -w
- -X github.com/pulumi/pulumi-yaml/pkg/version.Version={{.Tag}}
main: ./cmd/pulumi-converter-yaml/