Skip to content

Commit 6533a1e

Browse files
authored
fix(ci): fix docker publish action for helm tag (#1360)
* fix(ci): fix docker publish action for helm tag * fix: fix helm chart version
1 parent bd1002e commit 6533a1e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090

9191
publish-docker:
9292
needs: [tests]
93-
if: github.ref == 'refs/heads/main' || startsWith(github.event.ref, 'refs/tags') || github.event_name == 'release'
93+
if: github.ref == 'refs/heads/main' || (startsWith(github.event.ref, 'refs/tags') && !startsWith(github.ref, 'refs/tags/helm-')) || github.event_name == 'release'
9494
runs-on: ubuntu-latest
9595
permissions:
9696
contents: read

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
".": "2.0.1",
3-
"deployment/k8s/charts": "2.1.1"
3+
"deployment/k8s/charts": "2.1.2"
44
}

0 commit comments

Comments
 (0)