Skip to content

Commit

Permalink
fix binary templates maybe
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljguarino committed Oct 2, 2024
1 parent 79c394a commit 0371b59
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,18 +58,10 @@ builds:
archives:
- id: plural-cli
builds: [plural-cli]
name_template: >-
{{ .ProjectName }}_{{ .Version }}_
{{- title .Os -}}_
{{- if eq .Arch "386" -}}i386
{{- else -}}{{ .Arch }}{{- end -}}
name_template: "{{ .Binary }}_{{ .Version }}_{{- title .Os -}}_{{- if eq .Arch "386" -}}i386{{- else -}}{{ .Arch }}{{- end -}}"
- id: plrlctl
builds: [plrlctl]
name_template: >-
{{ .ProjectName }}ctl_{{ .Version }}_
{{- title .Os -}}_
{{- if eq .Arch "386" -}}i386
{{- else -}}{{ .Arch }}{{- end -}}
name_template: "{{ .Binary }}_{{ .Version }}_{{- title .Os -}}_{{- if eq .Arch "386" -}}i386{{- else -}}{{ .Arch }}{{- end -}}"

checksum:
name_template: 'checksums.txt'
Expand Down

0 comments on commit 0371b59

Please sign in to comment.