From 6e112f462a4eb08fcc16c47947442c7297442734 Mon Sep 17 00:00:00 2001 From: Frederic Branczyk Date: Fri, 19 May 2023 17:25:18 +0200 Subject: [PATCH] .goreleaser.yaml: Always push images This enables pushing unreleased images built from main as well. --- .goreleaser.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index a1f29a2..4604743 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -11,17 +11,20 @@ dockers: - "ghcr.io/brancz/locutus:{{ .Version }}-amd64" use: buildx dockerfile: Dockerfile + skip_push: false build_flag_templates: - "--platform=linux/amd64" - image_templates: - "ghcr.io/brancz/locutus:{{ .Version }}-arm64" use: buildx goarch: arm64 + skip_push: false dockerfile: Dockerfile build_flag_templates: - "--platform=linux/arm64/v8" docker_manifests: - name_template: ghcr.io/brancz/locutus:{{ .Version }} + skip_push: false image_templates: - ghcr.io/brancz/locutus:{{ .Version }}-amd64 - ghcr.io/brancz/locutus:{{ .Version }}-arm64