From 988a736f270d262b5dd26037d865d550adfb4a16 Mon Sep 17 00:00:00 2001 From: Marc-Antoine Fernandes Date: Fri, 2 Jun 2023 19:12:14 +0200 Subject: [PATCH] chore: Fix chart releaser workflow --- .github/workflows/release-chart.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release-chart.yml b/.github/workflows/release-chart.yml index 810b4c9..d358e37 100644 --- a/.github/workflows/release-chart.yml +++ b/.github/workflows/release-chart.yml @@ -13,6 +13,8 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 + with: + fetch-depth: 0 - name: Configure Git run: | @@ -23,5 +25,6 @@ jobs: uses: helm/chart-releaser-action@v1 with: charts_dir: charts + mark_as_latest: false env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"