Skip to content

Commit

Permalink
Fix multipline output
Browse files Browse the repository at this point in the history
  • Loading branch information
xanthio committed May 10, 2024
1 parent 0af5bd5 commit e57c44b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/new-device-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ jobs:
fi
done
if [ -f missings ]; then
echo "MISSINGS=\"$(cat missings)\"" >> $GITHUB_OUTPUT
echo "MISSINGS<<EOF" >> $GITHUB_OUTPUT
cat missings >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
echo "HAS_MISSINGS=true" >> $GITHUB_OUTPUT
else
echo "HAS_MISSINGS=false" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit e57c44b

Please sign in to comment.