Skip to content

Commit

Permalink
Update workflow to update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
coutug authored Apr 2, 2024
1 parent 043b855 commit b4f65cc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/helm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
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: update chart dependencies
run: |
for dir in $(ls -d charts/*/); do
helm dependency update $dir
done
- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.6.0
with:
Expand Down

0 comments on commit b4f65cc

Please sign in to comment.