From 4ea60f680341f8ded3b776a9dec4d6f064cc39ac Mon Sep 17 00:00:00 2001 From: Vishnu Narayanan Date: Tue, 3 Aug 2021 21:54:36 +0530 Subject: [PATCH] fix: helm release gh action --- .github/workflows/release.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f479639..4f09ea6 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -19,9 +19,14 @@ jobs: git config user.name "$GITHUB_ACTOR" git config user.email "$GITHUB_ACTOR@users.noreply.github.com" + - name: Install Helm + uses: azure/setup-helm@v1 + with: + version: v3.4.0 + - name: Add helm dependencies run: | - helm repo add bitnami "https://charts.bitnami.com/bitnami" + helm repo add bitnami "https://charts.bitnami.com/bitnami" - name: Run chart-releaser uses: helm/chart-releaser-action@v1.2.1