Skip to content

Commit 559dab1

Browse files
committed
added go releaser fixes
1 parent d9f67d5 commit 559dab1

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

.goreleaser.yml

+25-25
Original file line numberDiff line numberDiff line change
@@ -5,39 +5,39 @@ before:
55
# you may remove this if you don't need go generate
66
- go generate ./...
77
builds:
8-
- id: "kn-vsphere-build"
9-
binary: kn-vsphere
10-
main: ./plugins/vsphere/cmd/vsphere/main.go
11-
env:
12-
- CGO_ENABLED=0
13-
flags:
14-
- -mod=vendor
15-
ldflags:
16-
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.BuildDate={{.Date}}'
17-
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.Version={{.Version}}'
18-
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.GitRevision={{.Commit}}'
8+
- id: "kn-vsphere-build"
9+
binary: kn-vsphere
10+
main: ./plugins/vsphere/cmd/vsphere/main.go
11+
env:
12+
- CGO_ENABLED=0
13+
flags:
14+
- -mod=vendor
15+
ldflags:
16+
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.BuildDate={{.Date}}'
17+
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.Version={{.Version}}'
18+
- -X 'github.com/vmware-tanzu/sources-for-knative/plugins/vsphere/pkg/command/version.GitRevision={{.Commit}}'
1919
archives:
20-
- replacements:
21-
darwin: Darwin
22-
linux: Linux
23-
windows: Windows
24-
386: i386
25-
amd64: x86_64
26-
name_template: "kn-vsphere_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
27-
files:
28-
- LICENSE
29-
- ./plugins/vsphere/README.adoc
30-
wrap_in_directory: true
20+
- id: foo
21+
name_template: >-
22+
{{ .ProjectName }}_
23+
{{- title .Os }}_
24+
{{- if eq .Arch "amd64" }}x86_64
25+
{{- else if eq .Arch "386" }}i386
26+
{{- else }}{{ .Arch }}{{ end }}
27+
files:
28+
- LICENSE
29+
- ./plugins/vsphere/README.adoc
30+
wrap_in_directory: true
3131
checksum:
32-
name_template: 'checksums.txt'
32+
name_template: "checksums.txt"
3333
snapshot:
3434
name_template: "{{ .Tag }}-next"
3535
changelog:
3636
sort: asc
3737
filters:
3838
exclude:
39-
- '^docs:'
40-
- '^test:'
39+
- "^docs:"
40+
- "^test:"
4141
release:
4242
draft: false
4343
prerelease: false

0 commit comments

Comments
 (0)