From 21773ee8ed478f4476336a2680618c2fc2129eec Mon Sep 17 00:00:00 2001 From: Fabrizio Sestito Date: Wed, 18 Sep 2024 08:20:33 +0200 Subject: [PATCH] f Signed-off-by: Fabrizio Sestito --- .github/workflows/ci.yaml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 2a5edd71..a2eb1cce 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,14 +20,12 @@ jobs: run: helm plugin install https://github.com/helm-unittest/helm-unittest - name: Assemble list of chart directories to test run: | - tr ' ' '\n' <<< "${{ inputs.charts }}" | grep -v '^$' > charts-to-test || true - find . -type f -name 'Chart.yaml' -exec dirname {} \; > all-charts - [ -z "${{ inputs.charts }}" ] && mv all-charts charts-to-test || true + find . -type f -name 'Chart.yaml' -exec dirname {} \; > charts-to-test shell: bash - name: Fetch chart dependencies run: | for chart in $(cat charts-to-test); do - helm dependency update "$chart" >/dev/null + helm dependency update "$chart" done shell: bash - name: Run unit tests