Skip to content

Commit

Permalink
* Fix GoReleaser dryrun configs for both agent and master to use the
Browse files Browse the repository at this point in the history
  same archive artifact naming scheme as the production artifacts use.
  • Loading branch information
davidfluck-hpe committed Oct 7, 2024
1 parent 6cbad2d commit 129d49a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agent/.goreleaser_dryrun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ builds:
archives:
- wrap_in_directory: "true"
rlcp: true
name_template: "determined_agent_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 \"v1\") }}{{ .Amd64 }}{{ end }}"
name_template: "determined-agent_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 \"v1\") }}{{ .Amd64 }}{{ end }}"
files:
- src: "packaging/agent.yaml"
dst: "etc/determined/"
Expand Down
2 changes: 1 addition & 1 deletion master/.goreleaser_dryrun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ builds:
archives:
- wrap_in_directory: "true"
rlcp: true
name_template: "determined_master_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 \"v1\") }}{{ .Amd64 }}{{ end }}"
name_template: "determined-master_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ with .Arm }}v{{ . }}{{ end }}{{ with .Mips }}_{{ . }}{{ end }}{{ if not (eq .Amd64 \"v1\") }}{{ .Amd64 }}{{ end }}"
files:
- src: "packaging/master.yaml"
dst: "etc/determined/"
Expand Down

0 comments on commit 129d49a

Please sign in to comment.