From f4c81429e84d3bef47954717acfeabc1a4e581ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20=C5=A0alata?= Date: Fri, 2 Apr 2021 22:05:00 +0200 Subject: [PATCH] Fix path to the chart --- .github/workflows/release.yaml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index df61ec9..57ba6e2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -3,9 +3,9 @@ name: Release Charts on: push: branches: - - master + - main paths: - - 'charts/**' + - 'helm/**' jobs: release: @@ -13,10 +13,17 @@ jobs: steps: - name: Checkout uses: actions/checkout@v1 + - name: Configure Git run: | 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: Run chart-releaser uses: helm/chart-releaser-action@master env: