From fac3fac12895f73ce92d6ccc82c9950d24eb7ec7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Houpert?= <10154151+lhoupert@users.noreply.github.com> Date: Tue, 31 Mar 2026 15:00:02 +0100 Subject: [PATCH 1/2] fix(ci): fix docker publish action for helm tag --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 54af71dbd..641a0eea5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,7 +90,7 @@ jobs: publish-docker: needs: [tests] - if: github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release' + if: github.ref == 'refs/heads/main' || (startsWith(github.event.ref, 'refs/tags') && !startsWith(github.ref, 'refs/tags/helm-')) || github.event_name == 'release' runs-on: ubuntu-latest permissions: contents: read From 80ad5e4ebe6847686f277b019c2c56b5aa2aa3b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Houpert?= <10154151+lhoupert@users.noreply.github.com> Date: Tue, 31 Mar 2026 15:05:57 +0100 Subject: [PATCH 2/2] fix: fix helm chart version --- .release-please-manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 0b2cc496b..7030e335e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,4 +1,4 @@ { ".": "2.0.1", - "deployment/k8s/charts": "2.1.1" + "deployment/k8s/charts": "2.1.2" }