mirror of
https://github.com/tj-actions/changed-files
synced 2024-12-17 13:47:20 +00:00
Update test.yml
This commit is contained in:
parent
01d9c79ad2
commit
bbc26e5efa
1 changed files with 2 additions and 1 deletions
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…
Reference in a new issue