This commit is contained in:
Jonas Forsberg
2024-10-15 14:46:27 +02:00
parent 6007cc9f09
commit 6fdcccff69
2 changed files with 4 additions and 2 deletions

View File

@@ -28,9 +28,11 @@ jobs:
files: 'charts/**'
- name: List all changed files
env:
ALL_CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
run: |
echo "performing lint"
for file in ${{ steps.changed-files.all_changed_and_modified_files }}; do
for file in ${}ALL_CHANGED_FILES; do
echo "$file was changed"
helm lint $file
done