From 872bbb82c7ebe5c1779fa179267208dd0e0f48d1 Mon Sep 17 00:00:00 2001 From: Madison Grubb Date: Thu, 14 Mar 2024 10:45:54 -0400 Subject: [PATCH] add dependencies in releaser stage --- .github/workflows/helm_release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/helm_release.yml b/.github/workflows/helm_release.yml index 0fbeef4..4b2026f 100644 --- a/.github/workflows/helm_release.yml +++ b/.github/workflows/helm_release.yml @@ -24,7 +24,12 @@ jobs: - name: Install Helm uses: azure/setup-helm@v4 + - name: Add dependency repositories + run: | + helm repo add eck-operator https://helm.elastic.co + helm repo add opensearch https://opensearch-project.github.io/helm-charts/ + - name: Run chart-releaser uses: helm/chart-releaser-action@v1.6.0 env: - CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"