From a3ed321e14971a5bcada95125ebfcf3f4e53ee37 Mon Sep 17 00:00:00 2001 From: Chris Coutinho Date: Fri, 19 Dec 2025 22:41:04 +0100 Subject: [PATCH] fix(ci): skip existing Helm chart releases to prevent duplicate release errors The chart-releaser workflow was failing when the Helm chart version hadn't changed but the MCP server version was bumped. Added skip_existing: true to gracefully handle this scenario. --- .github/workflows/helm-release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/helm-release.yml b/.github/workflows/helm-release.yml index 6389eed..31e836c 100644 --- a/.github/workflows/helm-release.yml +++ b/.github/workflows/helm-release.yml @@ -38,6 +38,8 @@ jobs: - name: Run chart-releaser uses: helm/chart-releaser-action@cae68fefc6b5f367a0275617c9f83181ba54714f # v1.7.0 + with: + skip_existing: true env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"