From 640ce877dea9469dbec06c40c096908bc0e7dc8f Mon Sep 17 00:00:00 2001 From: Alberto Llamas Date: Fri, 12 Jul 2024 08:17:46 +0200 Subject: [PATCH] Fix: OCI registry when releasing helm chart (#105) Inbstallation of helm chart use this path in the OCI registry: `oci://8gears.container-registry.com/library/n8n` but with latest release it is required to add an extra path `/n8n` When trying: ``` helm pull oci://8gears.container-registry.com/library/n8n --version 0.24.0 Error: 8gears.container-registry.com/library/n8n:0.24.0: not found ``` it works when ``` helm pull oci://8gears.container-registry.com/library/n8n/n8n --version 0.24.0 ``` But that's not the path used in the helm chart documentation. CF: https://artifacthub.io/packages/helm/open-8gears/n8n/ You can also confirm that latest release `0.24.0` is not available in the helm chart. CF: https://artifacthub.io/packages/helm/open-8gears/n8n/?modal=changelog --- .github/workflows/push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/push.yaml b/.github/workflows/push.yaml index 69e760f..2ca7ef3 100644 --- a/.github/workflows/push.yaml +++ b/.github/workflows/push.yaml @@ -37,4 +37,4 @@ jobs: - name: Push charts to 8gears.container-registry.com run: | package_path=$(helm package charts/n8n --dependency-update | grep -o '/.*\.tgz') - helm push "${package_path}" "oci://8gears.container-registry.com/library/n8n" + helm push "${package_path}" "oci://8gears.container-registry.com/library"