We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c353daa commit 3050e93Copy full SHA for 3050e93
1 file changed
.github/workflows/charts.yml
@@ -47,6 +47,15 @@ jobs:
47
yq -i ".name = \"vyhub-test\" | .version = \"${NEW_VERSION}\"" \
48
charts/vyhub/Chart.yaml
49
50
+ # chart-releaser's `cr package` shells out to `helm dependency build`,
51
+ # which only resolves repository: URLs that are already registered with
52
+ # the local helm client. (OCI deps like bitnamicharts work without
53
+ # `repo add`; classic https:// repos do not.)
54
+ - name: Register chart dependency repositories
55
+ run: |
56
+ helm repo add grafana https://grafana.github.io/helm-charts
57
+ helm repo update
58
+
59
- name: Update chart dependencies
60
run: helm dependency update charts/vyhub
61
0 commit comments