We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74c2fbc commit 5610e15Copy full SHA for 5610e15
devops/actions/clang-format-SYCLomatic/action.yml
@@ -34,8 +34,10 @@ runs:
34
echo "Changed files:"
35
echo "$CHANGED_FILES"
36
37
- # Set the output for the next steps
38
- echo "all_changed_files=$CHANGED_FILES" >> $GITHUB_ENV
+ CHANGED_FILES_JOINED=$(echo "$CHANGED_FILES" | tr '\n' ' ')
+
39
+ # Set the output for the next steps using environment files
40
+ echo "all_changed_files=$CHANGED_FILES_JOINED" >> $GITHUB_ENV
41
42
- name: List Files
43
shell: bash
0 commit comments