From 2bfd52313d0cdfe4c9ff3660e24f9658250a54ae Mon Sep 17 00:00:00 2001 From: Winni Neessen Date: Thu, 14 Mar 2024 00:13:08 +0100 Subject: [PATCH] Remove redundant output line from .goreleaser.yaml The .goreleaser.yaml configuration been updated to remove the redundant output line under docker_signs. This change simplifies the configuration without changing the functionality of Docker image signing. The password for the Docker registry is still sourced from the 'COSIGN_PWD' environment variable. --- .goreleaser.yaml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 1c498c1..e5e1ad3 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -112,5 +112,4 @@ dockers: docker_signs: - artifacts: all - stdin: '{{ .Env.COSIGN_PWD }}' - output: true \ No newline at end of file + stdin: '{{ .Env.COSIGN_PWD }}' \ No newline at end of file