From af4bff8bbce98d83b9749f784a2637323649c2de Mon Sep 17 00:00:00 2001 From: Alex Lebens Date: Mon, 9 Jun 2025 16:51:18 -0500 Subject: [PATCH] remove extra step --- .gitea/workflows/lint-test.yaml | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.gitea/workflows/lint-test.yaml b/.gitea/workflows/lint-test.yaml index 01ba61926..134ecff8a 100644 --- a/.gitea/workflows/lint-test.yaml +++ b/.gitea/workflows/lint-test.yaml @@ -28,15 +28,6 @@ jobs: token: ${{ secrets.GITEA_TOKEN }} version: latest - - name: Lint Helm Chart - run: | - find clusters -maxdepth 4 -name Chart.yaml -exec dirname {} \; | while read -r chart_path; do - echo "Building chart dependency in $chart_path" - helm dependency build "$chart_path" - echo "Linting chart in $chart_path" - helm lint "$chart_path" - done - - name: Lint Helm Chart run: | set -e # Exit immediately if a command exits with a non-zero status.