From 00c5f47168a10922e747190621c2243ad1c125f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Le=20Meur?= Date: Tue, 21 Nov 2023 22:26:24 +0100 Subject: [PATCH] fixup / --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1ce697199..b3dff3c0f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,7 +44,7 @@ jobs: IFS=',' read -ra changedCharts <<< "${{ steps.chart_releaser.outputs.changed_charts }}" for chart in "${changedCharts[@]}"; do - chartName=$(echo "${chart}" | cut -d '\' -f 2) + chartName=$(echo "${chart}" | cut -d '/' -f 2) echo "= chartName: ${chartName}" # Retrieve version from Chart.yaml version=$(yq '.version' "${chart}/Chart.yaml")