diff --git a/.github/workflows/release-helm-chart.yaml b/.github/workflows/release-helm-chart.yaml index d0dee040..323f1b67 100644 --- a/.github/workflows/release-helm-chart.yaml +++ b/.github/workflows/release-helm-chart.yaml @@ -23,12 +23,21 @@ jobs: with: version: '3.7.0' + # Add Helm repo and update dependencies + - name: Add Helm repositories and update dependencies + run: | + helm repo add incubator https://charts.helm.sh/incubator + helm repo add prometheus-community https://prometheus-community.github.io/helm-charts + helm repo add elastic https://helm.elastic.co + helm repo add grafana https://grafana.github.io/helm-charts + helm dependency update . + - name: Lint and Test Chart run: helm lint . - name: Run chart-releaser uses: helm/chart-releaser-action@v1.1.0 with: - version: v1.2.0 + version: v1.2.0 env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"