Skip to content

Commit

Permalink
Update test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jackton1 committed Sep 5, 2022
1 parent 01d9c79 commit bbc26e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -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
Expand Down

0 comments on commit bbc26e5

Please sign in to comment.