From dc3e49f6e2cd1b212c56a7eb26a78c93225ad149 Mon Sep 17 00:00:00 2001 From: Virgile <78490891+V-Gira@users.noreply.github.com> Date: Wed, 22 May 2024 15:56:22 +0200 Subject: [PATCH] chore(ci): fix bash condition to publish chart versions (#17321) (#17442) Co-authored-by: Thomas Belin --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index b912e9b286a..0fb0714cd4e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -143,7 +143,7 @@ jobs: helm repo add charts-webapp s3://public.wire.com/charts-webapp - if [ "${{github.ref}}" =~ "/refs/tags" ]; then + if [[ "${{github.ref}}" =~ "/refs/tags" ]]; then chart_version="$(./bin/chart-next-version.sh release)" else chart_version="$(./bin/chart-next-version.sh prerelease)"