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

Commit

Permalink
🐛 fix(goreleaser): fix typo in name_template for linux, macos, and ma…
Browse files Browse the repository at this point in the history
…cos-m1 archives
  • Loading branch information
kamushadenes committed Mar 29, 2023
1 parent d1a0d88 commit 48d0eb5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .goreleaser/linux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ builds:

archives:
- format: tar.gz
name_template: "{{ .ProjectName }}_{{- .Os }}_{ .Arch }}{{- if .Arm }}v{{ .Arm }}{{ end }}"
name_template: "{{ .ProjectName }}_{{- .Os }}_{{ .Arch }}{{- if .Arm }}v{{ .Arm }}{{ end }}"
# use zip for windows archives
format_overrides:
- goos: windows
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser/macos-m1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ builds:

archives:
- format: tar.gz
name_template: "{{ .ProjectName }}_{{- .Os }}_{ .Arch }}{{- if .Arm }}v{{ .Arm }}{{ end }}"
name_template: "{{ .ProjectName }}_{{- .Os }}_{{ .Arch }}{{- if .Arm }}v{{ .Arm }}{{ end }}"
# use zip for windows archives
format_overrides:
- goos: windows
Expand Down
2 changes: 1 addition & 1 deletion .goreleaser/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ builds:

archives:
- format: tar.gz
name_template: "{{ .ProjectName }}_{{- .Os }}_{ .Arch }}{{- if .Arm }}v{{ .Arm }}{{ end }}"
name_template: "{{ .ProjectName }}_{{- .Os }}_{{ .Arch }}{{- if .Arm }}v{{ .Arm }}{{ end }}"
# use zip for windows archives
format_overrides:
- goos: windows
Expand Down

0 comments on commit 48d0eb5

Please sign in to comment.