From 38e667d6dd7f93d8c674248adf01e17e82361a17 Mon Sep 17 00:00:00 2001 From: Markus Pesch Date: Sun, 3 May 2026 19:13:32 +0200 Subject: [PATCH] fix(ci): disable .prov file upload for Gitea --- .gitea/workflows/release.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml index 952b4a5..5499bc7 100644 --- a/.gitea/workflows/release.yaml +++ b/.gitea/workflows/release.yaml @@ -121,6 +121,12 @@ jobs: --upload-file "${REPOSITORY_NAME}-${PACKAGE_VERSION}.tgz" \ https://${GITEA_SERVER_HOSTNAME}/api/packages/${REPOSITORY_OWNER}/helm/api/charts + # NOTE: + # Gitea does currently not support uploading Helm chart provenance files, so we skip this step for now. Once + # Gitea supports this, we can simply uncomment the following lines to upload the provenance file as well. + # + # https://github.com/helm/helm/issues/31866 + # if [ -f "${REPOSITORY_NAME}-${PACKAGE_VERSION}.tgz.prov" ]; then curl \ --fail \