Skip to content
This repository has been archived by the owner on Dec 23, 2023. It is now read-only.

Commit

Permalink
ci: fix goreleaser config
Browse files Browse the repository at this point in the history
  • Loading branch information
muety committed Jul 9, 2023
1 parent 94961d7 commit 98a28e1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ archives:
- config.yml
- templates/*
- version.txt
replacements:
darwin: Darwin
linux: Linux
386: i386
amd64: x86_64
name_template: "{{ .Binary }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}"
name_template: >-
{{ .Binary }}_
{{- title .Os }}_
{{- if eq .Arch "amd64" }}x86_64
{{- else if eq .Arch "386" }}i386
{{- else }}{{ .Arch }}{{ end }}
dockers:
- ids:
- mailwhale-builds
Expand Down

0 comments on commit 98a28e1

Please sign in to comment.