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 9eeac92 commit 92a1177Copy full SHA for 92a1177
.github/workflows/release-helm.yaml
@@ -3,6 +3,8 @@ name: Release Charts
3
on:
4
workflow_dispatch:
5
push:
6
+ paths:
7
+ - "charts/**"
8
branches:
9
- main
10
@@ -19,6 +21,12 @@ jobs:
19
21
with:
20
22
fetch-depth: 0
23
24
+ - name: Add repositories
25
+ run: |
26
+ for dir in $(ls -d charts/*/); do
27
+ helm dependency list $dir 2> /dev/null | grep -v 0.0.0 | tail +2 | head -n -1 | awk '{ print "helm repo add " $1 " " $3 }' | while read cmd; do $cmd; done
28
+ done
29
+
30
- name: Configure Git
31
run: |
32
git config user.name "$GITHUB_ACTOR"
helm/.helmignore renamed to charts/trieve/.helmignore
0 commit comments