Skip to content

Commit

Permalink
Fix nametemplate (#555)
Browse files Browse the repository at this point in the history
think this might be part of why goreleaser is borking out
  • Loading branch information
michaeljguarino authored Oct 2, 2024
1 parent a84e3f4 commit c27f6c7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -101,15 +101,15 @@ archives:
name_template: >-
{{ .ProjectName }}_{{ .Version }}_
{{- title .Os }}_
{{- if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if eq .Arch "386" -}}i386
{{- else -}}{{ .Arch }}{{- end -}}
- id: plrlctl
builds: [plrlctl]
name_template: >-
{{ .ProjectName }}_{{ .Version }}_
{{- title .Os }}_
{{- if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
{{- if eq .Arch "386" -}}i386
{{- else -}}{{ .Arch }}{{- end -}}
checksum:
name_template: 'checksums.txt'
Expand Down

0 comments on commit c27f6c7

Please sign in to comment.