From d62a20ab39ff821b82dc2b62ca964f6a95684dec Mon Sep 17 00:00:00 2001 From: pb Date: Tue, 29 Jul 2025 11:43:45 +0200 Subject: [PATCH] Corrected the YAML annotation for access and secret KeySecret --- models/template.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/models/template.go b/models/template.go index 05dde12..99e5a51 100644 --- a/models/template.go +++ b/models/template.go @@ -71,8 +71,8 @@ type Key struct { Bucket string `yaml:"bucket"` EndPoint string `yaml:"endpoint"` Insecure bool `yaml:"insecure"` - AccessKeySecret *Secret `yaml: accessKeySecret` - SecretKeySecret *Secret `yaml: secretKeySecret` + AccessKeySecret *Secret `yaml:"accessKeySecret"` + SecretKeySecret *Secret `yaml:"secretKeySecret"` } type Artifact struct {