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 }}"