File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,15 @@ jobs:
37
37
libraries/examples/**
38
38
libraries/extras/**
39
39
libraries/ea_malloc/**
40
- write_output_files : true
41
- - name : List changed files
40
+ json : true
41
+ - name : Export changed files in a text file, one per line
42
42
if : steps.changed-files.outputs.any_changed == 'true'
43
- run : cat .github/outputs/all_changed_files.txt
43
+ run : |
44
+ echo ${{ steps.changed-files.outputs.all_changed_files }} | jq -r '.[]' > all_changed_files.txt
45
+ cat all_changed_files.txt
44
46
- name : Run clang-format check
45
47
if : steps.changed-files.outputs.any_changed == 'true'
46
48
uses : pillo79/clang-format-action@05f671e71f0758aba4d3c9dbb0ee81bc5f0137c6
47
49
with :
48
50
clang-format-version : ' 19'
49
- check-files-from : .github/outputs/ all_changed_files.txt
51
+ check-files-from : all_changed_files.txt
You can’t perform that action at this time.
0 commit comments