Skip to content

Commit 838f429

Browse files
fix: add helm repo before dependency build in cluster-test
1 parent bc78b31 commit 838f429

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/cluster-test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,10 @@ jobs:
120120
kubectl wait --for=condition=ready pod -l app=redis -n s3proxy --timeout=120s
121121
122122
- name: Build Helm dependencies
123-
run: helm dependency build manifests/
123+
run: |
124+
helm repo add dandydeveloper https://dandydeveloper.github.io/charts
125+
helm repo update
126+
helm dependency build manifests/
124127
125128
- name: Install s3proxy chart
126129
run: |

0 commit comments

Comments
 (0)