Skip to content

Commit

Permalink
goreleaser: use tag in manifest, not version (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksieger authored Jun 3, 2022
1 parent 8cdb7a6 commit 0e85b9c
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,14 +112,14 @@ dockers:
- "--label=org.opencontainers.image.revision={{ .FullCommit }}"
- "--label=org.opencontainers.image.licenses=Apache-2.0"
docker_manifests:
- name_template: tiltdev/{{ .ProjectName }}:{{ .Version }}
- name_template: tiltdev/{{ .ProjectName }}:{{ .Tag }}
image_templates:
- tiltdev/{{ .ProjectName }}:{{ .Version }}-amd64
- tiltdev/{{ .ProjectName }}:{{ .Version }}-arm64
- tiltdev/{{ .ProjectName }}:{{ .Tag }}-amd64
- tiltdev/{{ .ProjectName }}:{{ .Tag }}-arm64
- name_template: tiltdev/{{ .ProjectName }}:latest
image_templates:
- tiltdev/{{ .ProjectName }}:{{ .Version }}-amd64
- tiltdev/{{ .ProjectName }}:{{ .Version }}-arm64
- tiltdev/{{ .ProjectName }}:{{ .Tag }}-amd64
- tiltdev/{{ .ProjectName }}:{{ .Tag }}-arm64


# Uncomment these lines if you want to experiment with other
Expand Down

0 comments on commit 0e85b9c

Please sign in to comment.