diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 583da95..c12e1d9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -23,6 +23,12 @@ jobs: - name: Install Helm uses: azure/setup-helm@v3 + - name: Install Helm Deps + run: | + for dir in $(ls -d charts/*/); do + helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done + done + - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0 env: