From abdddc6e55718909ccd23725cc4ce191a81e6bc7 Mon Sep 17 00:00:00 2001 From: Achilleas Koutsou Date: Tue, 11 Oct 2022 11:50:09 +0200 Subject: [PATCH] osbuild: fix gpgkeys json key in ostree source --- internal/osbuild/ostree_source.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/osbuild/ostree_source.go b/internal/osbuild/ostree_source.go index adc357eff..a2f96a3b4 100644 --- a/internal/osbuild/ostree_source.go +++ b/internal/osbuild/ostree_source.go @@ -15,5 +15,5 @@ type OSTreeSourceRemote struct { // URL of the repository. URL string `json:"url"` // GPG keys to verify the commits - GPGKeys []string `json:"secrets,omitempty"` + GPGKeys []string `json:"gpgkeys,omitempty"` }