Skip to content

Commit

Permalink
add repos
Browse files Browse the repository at this point in the history
  • Loading branch information
andrenarchy committed Nov 20, 2023
1 parent 0818d6e commit c06dce3
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,13 @@ jobs:
- name: Install Helm
uses: azure/setup-helm@v3

# See https://github.com/helm/chart-releaser-action/issues/74#issuecomment-1206111172
- name: 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: Run chart-releaser
uses: helm/[email protected]
env:
Expand Down

0 comments on commit c06dce3

Please sign in to comment.