diff --git a/.github/workflows/helm-community.yml b/.github/workflows/helm-community.yml index 623e49390..e6bd83184 100644 --- a/.github/workflows/helm-community.yml +++ b/.github/workflows/helm-community.yml @@ -84,6 +84,12 @@ jobs: --from-file=.dockerconfigjson=$HOME/.docker/config.json \ --type=kubernetes.io/dockerconfigjson + - name: Add dependency chart repos + run: | + helm repo add self https://alfresco.github.io/alfresco-helm-charts/ + helm repo add codecentric https://codecentric.github.io/helm-charts/ + helm repo add elastic https://helm.elastic.co/ + - name: Helm install run: | helm dep build . diff --git a/.github/workflows/helm-enterprise.yml b/.github/workflows/helm-enterprise.yml index 155b3303a..7bfbce65a 100644 --- a/.github/workflows/helm-enterprise.yml +++ b/.github/workflows/helm-enterprise.yml @@ -125,6 +125,11 @@ jobs: echo "helm_install_params=--set dtas.additionalArgs[0]='-k not test_renditions'" >> "$GITHUB_OUTPUT" fi + - name: Add dependency chart repos + run: | + helm repo add self https://alfresco.github.io/alfresco-helm-charts/ + helm repo add elastic https://helm.elastic.co/ + - name: Helm install run: >- helm dep build ./helm/alfresco-content-services &&