File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -22,12 +22,16 @@ jobs:
22
22
include_all_old_new_renamed_files : ' true'
23
23
write_output_files : ' true'
24
24
- name : Debug renamed files output
25
+ id : output-renamed
26
+ env :
27
+ RENAMED_FILES : ${{ steps.changed_files.outputs.all_old_new_renamed_files }}
25
28
run : |
26
29
echo "Renamed files output:"
27
- echo "${{ steps.changed_files.outputs.all_old_new_renamed_files }}"
30
+ echo "$RENAMED_FILES"
28
31
- name : Write renamed files to output
32
+ id : write-renamed
29
33
run : |
30
- printf "%s\n" "${{ steps.changed_files.outputs.all_old_new_renamed_files }} " > .github/outputs/renamed_files.txt
34
+ printf "%s\n" "$RENAMED_FILES " > .github/outputs/renamed_files.txt
31
35
- name : Verify the contents of renamed_files.txt
32
36
run : |
33
37
cat .github/outputs/renamed_files.txt
You can’t perform that action at this time.
0 commit comments