From a93fbc3ca224653cd68ac425d123464da64f4b1f Mon Sep 17 00:00:00 2001 From: Nicolas Giard Date: Sun, 24 Oct 2021 03:02:57 -0400 Subject: [PATCH] misc: fix helm charts auth var reference --- .github/workflows/helm.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/helm.yml b/.github/workflows/helm.yml index f2de444e..fd39373e 100644 --- a/.github/workflows/helm.yml +++ b/.github/workflows/helm.yml @@ -22,7 +22,7 @@ jobs: run: | helm plugin install https://github.com/chartmuseum/helm-push.git helm repo add chartmuseum https://charts.js.wiki - helm cm-push --username="${{env.HELM_REPO_USERNAME}}" --password="${{env.HELM_REPO_PASSWORD}}" dev/helm/ chartmuseum + helm cm-push --username="${{secrets.HELM_REPO_USERNAME}}" --password="${{secrets.HELM_REPO_PASSWORD}}" dev/helm/ chartmuseum helm repo remove chartmuseum # - name: Generate and Push Chart Archive