From 9312d4f79d49928a59655056875b0d8fc834d469 Mon Sep 17 00:00:00 2001 From: rbnis <5955614+rbnis@users.noreply.github.com> Date: Sat, 22 Feb 2025 03:23:50 +0100 Subject: [PATCH] feat(open-webui): Build helm dependencies to test if Chart.lock is in sync --- .github/workflows/helm-test-open-webui.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/workflows/helm-test-open-webui.yml b/.github/workflows/helm-test-open-webui.yml index f477314..e603832 100644 --- a/.github/workflows/helm-test-open-webui.yml +++ b/.github/workflows/helm-test-open-webui.yml @@ -24,6 +24,16 @@ jobs: run: | helm lint ./charts/open-webui + - name: Add Dependency Repos + run: | + helm repo add ollama https://otwld.github.io/ollama-helm/ + helm repo add open-webui https://helm.openwebui.com/ + helm repo add tika https://apache.jfrog.io/artifactory/tika/ + helm repo add redis https://charts.bitnami.com/bitnami + - name: Build open-webui Helm dependencies + run: | + helm dependency build ./charts/open-webui + test-deploy: name: Test Chart Deployment runs-on: ubuntu-latest