From 381b3d6108a2829603069a736a877310143b0ee6 Mon Sep 17 00:00:00 2001 From: Kris Budde Date: Wed, 18 May 2022 20:37:45 +0200 Subject: [PATCH] goreleaser: fixed yaml issues String expected: Only issue was probably just the warning. --- .goreleaser.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index 81ce389..ecd77cc 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -50,7 +50,7 @@ dockers: - goos: linux goarch: arm - goarm: 6 + goarm: "6" image_templates: - "kbudde/rabbitmq-exporter:linux-arm6-{{.ShortCommit}}" - "ghcr.io/kbudde/rabbitmq_exporter:linux-arm6-{{.ShortCommit}}" @@ -65,7 +65,7 @@ dockers: - goos: linux goarch: arm - goarm: 7 + goarm: "7" image_templates: - "kbudde/rabbitmq-exporter:linux-arm7-{{.ShortCommit}}" - "ghcr.io/kbudde/rabbitmq_exporter:linux-arm7-{{.ShortCommit}}"