From 2184eaf5e4c50a38f52d462cb647963d4f428265 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 7 Jan 2024 16:43:15 +0100 Subject: [PATCH] fix(ci): fix the helm release process (#2) --- .github/workflows/helm.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index b187ab2..f95c2e7 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -34,8 +34,9 @@ jobs: - name: Release Helm Chart run: | REGISTRY=oci://registry-1.docker.io/casbin + cd charts/casdoor helm package . PKG_NAME=$(ls *.tgz) - helm repo index charts/casdoor --url $REGISTRY --merge index.yaml + helm repo index . --url $REGISTRY --merge index.yaml helm push $PKG_NAME $REGISTRY rm $PKG_NAME \ No newline at end of file