Update test.yml
This commit is contained in:
parent
01d9c79ad2
commit
bbc26e5efa
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
@ -418,7 +418,8 @@ jobs:
|
||||
separator: ","
|
||||
- name: List all modified files
|
||||
run: |
|
||||
IFS=$','; for file in ${{ steps.changed-files-comma.outputs.modified_files }}; do
|
||||
IFS=$',' read -a MODIFIED_FILES_ARRAY <<< "${{ steps.changed-files-comma.outputs.modified_files }}"
|
||||
for file in "${MODIFIED_FILES_ARRAY[@]}"; do
|
||||
echo $file
|
||||
done
|
||||
unset IFS
|
||||
|
Loading…
x
Reference in New Issue
Block a user