From fc3722c005a3fd15fd99869a2870ff8eda57de45 Mon Sep 17 00:00:00 2001 From: Giovanni Toraldo Date: Wed, 25 Sep 2024 15:33:24 +0200 Subject: [PATCH] add deps --- .github/workflows/helm-community.yml | 6 ++++++ .github/workflows/helm-enterprise.yml | 5 +++++ 2 files changed, 11 insertions(+) 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 &&