From 6273d57164577ddd6eb25ed02db64d5ee55a3f70 Mon Sep 17 00:00:00 2001 From: rcourtman Date: Tue, 11 Nov 2025 19:28:48 +0000 Subject: [PATCH] Fix Helm chart releaser to skip existing releases Use helm-chart- prefix for releases to avoid conflicts with main Pulse releases --- .github/workflows/helm-pages.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/helm-pages.yml b/.github/workflows/helm-pages.yml index 9ab2d4c..c88db4d 100644 --- a/.github/workflows/helm-pages.yml +++ b/.github/workflows/helm-pages.yml @@ -47,6 +47,7 @@ jobs: with: charts_dir: deploy/helm config: cr.yaml + skip_existing: true env: CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" - CR_RELEASE_NAME_TEMPLATE: "{{ .Version }}" + CR_RELEASE_NAME_TEMPLATE: "helm-chart-{{ .Version }}"