From 455499c6f8e5601b79d9fb81e5deeb21f5978864 Mon Sep 17 00:00:00 2001 From: Noam Gal Date: Sun, 20 Apr 2025 16:39:39 +0300 Subject: [PATCH] fix(workflow): downgrade chart-releaser-action to v1.5.0 due to bug Replaced the chart-releaser-action version from v1.7.0 to v1.5.0 to avoid issues with packaging when skip_packaging is set to true. This change addresses a known bug in the newer version. --- .github/workflows/publish.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1519b1c30..72aa62ef3 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -59,7 +59,8 @@ jobs: PGP_PASSPHRASE: "${{ secrets.PGP_PASSPHRASE }}" - name: Run chart-releaser - uses: helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0 + # currently there is a bug on 1.7.0 version (https://github.com/helm/chart-releaser-action/issues/171) - it's marked as closed, but the script returns 1 if skip_packaging is set to true + uses: helm/chart-releaser-action@be16258da8010256c6e82849661221415f031968 # v1.5.0 with: config: "./.github/configs/cr.yaml" skip_packaging: true