Skip to content

Commit

Permalink
Filter out file:// helm dependecies
Browse files Browse the repository at this point in the history
  • Loading branch information
xannz committed Oct 29, 2024
1 parent c668256 commit e01575e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release_helmcharts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- 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
helm dependency list $dir 2> /dev/null | tail +2 | head -n -1 | grep -v -E 'file://' | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
done
- name: Run chart-releaser
Expand Down

0 comments on commit e01575e

Please sign in to comment.