We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b32166 commit aa5a90fCopy full SHA for aa5a90f
.github/workflows/release-helm.yml
@@ -29,7 +29,7 @@ jobs:
29
- name: Add helm repositories
30
run: |
31
for dir in $(ls -d ./*/); do
32
- 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 | awk '{ print "helm repo add " $1 " " $3 }' | grep -v 'oci://' | while read cmd; do $cmd; done
33
done
34
35
- name: Run chart-releaser
0 commit comments