Skip to content

Commit

Permalink
Merge pull request #19 from CSCfi/try-fix-gha
Browse files Browse the repository at this point in the history
Steps to add repo
  • Loading branch information
lvarin authored Feb 28, 2024
2 parents 324c89a + f93ed35 commit e8e6528
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 e8e6528

Please sign in to comment.