remove extra step
All checks were successful
renovate / renovate (push) Successful in 1m31s

This commit is contained in:
2025-06-09 16:51:18 -05:00
parent 69e4880946
commit af4bff8bbc

View File

@@ -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.