Skip to content

Commit 3304ae0

Browse files
committed
fix
1 parent 87d89ea commit 3304ae0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build_py_tools.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
id: verify-changed-files
3434
run: |
3535
CHANGED_FILES=$(git log -1 --name-only --pretty=format: -- tools/get.py tools/espota.py tools/gen_esp32part.py tools/gen_insights_package.py)
36-
echo all_changed_files="$CHANGED_FILES" >> $GITHUB_OUTPUT
36+
CHANGED_FILES=$(echo "$CHANGED_FILES" | tr '\n' ' ')
37+
echo "all_changed_files=$CHANGED_FILES" >> $GITHUB_OUTPUT
3738
if [ -n "$CHANGED_FILES" ]; then
3839
echo "any_changed=true" >> $GITHUB_OUTPUT
3940
else

0 commit comments

Comments
 (0)