From 24b1d1e4be3c3d9d94ef7e9802f6375eacecbaa7 Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Sat, 10 Sep 2022 16:48:40 +0200 Subject: [PATCH] chore: add missing manifest --- .goreleaser.yml | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 8ec1249..f78d5ec 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -34,13 +34,26 @@ archives: files: - LICENSE +docker_manifests: + - name_template: 'traefik/whoami:{{ .Tag }}' + image_templates: + - 'traefik/whoami:{{ .Tag }}-amd64' + - 'traefik/whoami:{{ .Tag }}-arm64' + - name_template: 'traefik/whoami:latest' + image_templates: + - 'traefik/whoami:{{ .Tag }}-amd64' + - 'traefik/whoami:{{ .Tag }}-arm64' + - name_template: 'traefik/whoami:v{{ .Major }}.{{ .Minor }}' + image_templates: + - 'traefik/whoami:v{{ .Major }}.{{ .Minor }}-amd64' + - 'traefik/whoami:v{{ .Major }}.{{ .Minor }}-arm64' + dockers: - use: buildx goos: linux goarch: amd64 dockerfile: buildx.Dockerfile image_templates: - - 'traefik/whoami:dev-amd64' - 'traefik/whoami:latest-amd64' - 'traefik/whoami:{{ .Tag }}-amd64' - 'traefik/whoami:v{{ .Major }}.{{ .Minor }}-amd64' @@ -56,7 +69,6 @@ dockers: goarch: arm64 dockerfile: buildx.Dockerfile image_templates: - - 'traefik/whoami:dev-arm64' - 'traefik/whoami:latest-arm64' - 'traefik/whoami:{{ .Tag }}-arm64' - 'traefik/whoami:v{{ .Major }}.{{ .Minor }}-arm64'