From 414efe256567769df43843ec2098963e63dd2699 Mon Sep 17 00:00:00 2001 From: William P Date: Tue, 20 Jan 2026 20:08:56 -0500 Subject: [PATCH] chore(fix): temporarily add --verify=false to helm plugin install --- .gitea/workflows/release-version.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/release-version.yml b/.gitea/workflows/release-version.yml index 2c6086f..0b60921 100644 --- a/.gitea/workflows/release-version.yml +++ b/.gitea/workflows/release-version.yml @@ -65,9 +65,10 @@ jobs: # Using helm gpg plugin as 'helm package --sign' has issues with gpg2: https://github.com/helm/helm/issues/2843 - name: package chart + # remove `--verify=false` once https://github.com/helm/helm/issues/31490 is resolved run: | # FIXME: use upstream after https://github.com/technosophos/helm-gpg/issues/1 is solved - helm plugin install https://github.com/pat-s/helm-gpg + helm plugin install https://github.com/pat-s/helm-gpg --verify=false helm dependency build helm package --version "${GITHUB_REF#refs/tags/v}" ./ mkdir gitea