Skip to content

Commit 1850fa8

Browse files
authored
Update release-charts.yml
1 parent 5b8d77a commit 1850fa8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/release-charts.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,17 @@ jobs:
1919
git config user.name "$GITHUB_ACTOR"
2020
git config user.email "[email protected]"
2121
22+
- name: Install Helm
23+
uses: azure/setup-helm@v1
24+
with:
25+
version: v3.4.0
26+
27+
- name: Helm Deps
28+
run: |
29+
helm repo add bitnami https://charts.bitnami.com/bitnami
30+
for dir in $(ls -d charts/*); do
31+
helm dependency update $dir;
32+
done
2233
- name: Run chart-releaser
2334
uses: helm/[email protected]
2435
env:

0 commit comments

Comments
 (0)