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.
This commit is contained in:
Chris Coutinho
2025-12-19 22:41:04 +01:00
parent 2bb738ed3f
commit a3ed321e14
+2
View File
@@ -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 }}"