From 12b273b0cfe235668c6ae66499f60eeb0077087e Mon Sep 17 00:00:00 2001 From: Kurt <10924313+Kurt108@users.noreply.github.com> Date: Fri, 23 Jul 2021 12:00:51 +0200 Subject: [PATCH] use updated workflow from https://github.com/helm/chart-releaser-action bebaut the old workflow was broken --- .github/workflows/release.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 8307709..566b59e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -5,7 +5,6 @@ on: branches: - master - jobs: release: runs-on: ubuntu-latest @@ -14,11 +13,18 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 + - 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@main + uses: helm/chart-releaser-action@v1.2.1 env: - CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"