From a52ce443a77ac50fc9838eedbadaef62aad1223e Mon Sep 17 00:00:00 2001 From: Marco Vito Moscaritolo Date: Sat, 14 Oct 2023 12:31:18 +0200 Subject: [PATCH 1/2] fix: remove parameter that is not supported in the chart-release action --- .github/workflows/release-chart.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/release-chart.yml b/.github/workflows/release-chart.yml index c301377..4243da4 100644 --- a/.github/workflows/release-chart.yml +++ b/.github/workflows/release-chart.yml @@ -25,6 +25,5 @@ jobs: uses: helm/chart-releaser-action@v1 with: charts_dir: charts - mark_as_latest: false env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" From a87eba166a8ed95f05bdc244289847657a93ac0e Mon Sep 17 00:00:00 2001 From: Marco Vito Moscaritolo Date: Mon, 23 Oct 2023 08:57:01 +0200 Subject: [PATCH 2/2] ci: restore the 'mark_as_latest' parameter by updating the chart version --- .github/workflows/release-chart.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-chart.yml b/.github/workflows/release-chart.yml index 4243da4..af638e5 100644 --- a/.github/workflows/release-chart.yml +++ b/.github/workflows/release-chart.yml @@ -22,8 +22,9 @@ jobs: git config user.email "$GITHUB_ACTOR@users.noreply.github.com" - name: Run chart-releaser - uses: helm/chart-releaser-action@v1 + uses: helm/chart-releaser-action@ed43eb303604cbc0eeec8390544f7748dc6c790d with: charts_dir: charts + mark_as_latest: false env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"