Skip to content

Commit

Permalink
Steps to add repo
Browse files Browse the repository at this point in the history
  • Loading branch information
trispera committed Feb 28, 2024
1 parent 324c89a commit f93ed35
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,13 @@ jobs:
with:
version: v3.12.1

- name: Helm Deps
- name: Helm add repositories
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: Helm Dependency
run: |
for dir in $(ls -d charts/*); do
helm dependency update $dir;
Expand Down

0 comments on commit f93ed35

Please sign in to comment.