From 971a7523ca26b74563c2b556faf162e09ce312a2 Mon Sep 17 00:00:00 2001 From: Shuting Zhao Date: Tue, 24 Nov 2020 14:52:40 -0800 Subject: [PATCH] migrate to chart-releaser --- .github/workflows/release.yaml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index d6088206ae..e72f66d148 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -75,18 +75,20 @@ jobs: steps: - name: Checkout uses: actions/checkout@v2 - - - name: Unshallow - run: git fetch --prune --unshallow - - - name: Set up Go - uses: actions/setup-go@v2 with: - go-version: 1.14 + fetch-depth: 0 - - uses: J12934/helm-gh-pages-action@master - name: Run Helm Publish + - 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: - access-token: ${{ secrets.GITHUB_TOKEN }} - deploy-branch: gh-pages - charts-folder: charts \ No newline at end of file + version: v3.4.0 + + - name: Run chart-releaser + uses: helm/chart-releaser-action@v1.1.0 + env: + CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" \ No newline at end of file