From 9eda59be1d104705e46c86c476d2454915a4721f Mon Sep 17 00:00:00 2001 From: Fran Mulero Date: Wed, 5 Apr 2023 11:22:19 +0200 Subject: [PATCH] [bitnami/charts] Fix charts path in CD pipeline (#15966) Signed-off-by: Fran Mulero --- .github/workflows/cd-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd-pipeline.yml b/.github/workflows/cd-pipeline.yml index adfbc8a035..0bfc2ad249 100644 --- a/.github/workflows/cd-pipeline.yml +++ b/.github/workflows/cd-pipeline.yml @@ -183,7 +183,7 @@ jobs: verification_mode="$(cat $config_file | grep 'verification-mode' | cut -d'=' -f2)" fi runtime_parameters_file="" - if [[ -f ".vib/${{ needs.get-chart.outputs.chart }}/runtime-parameters.yaml" ]]; then + if [[ -f "charts/.vib/${{ needs.get-chart.outputs.chart }}/runtime-parameters.yaml" ]]; then # The path is relative to the .vib folder runtime_parameters_file="${{ needs.get-chart.outputs.chart }}/runtime-parameters.yaml" fi