Browse Source

misc: fix helm charts auth (2)

pull/4663/head
Nicolas Giard 3 years ago
committed by GitHub
parent
commit
e436441994
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. 4
      .github/workflows/helm.yml

4
.github/workflows/helm.yml

@ -21,8 +21,8 @@ jobs:
- name: Package and Push Chart
run: |
helm plugin install https://github.com/chartmuseum/helm-push.git
helm repo add chartmuseum https://charts.js.wiki --username ${{env.HELM_REPO_USERNAME}} --password ${{env.HELM_REPO_PASSWORD}}
helm cm-push dev/helm/ chartmuseum
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 repo remove chartmuseum
# - name: Generate and Push Chart Archive

Loading…
Cancel
Save