CI Checks: Fix malformed markdown (#3595)

The Benchmark results aren't formatted properly if the ecosystem check finds differences because the ecosystem check doesn't emit a trailing newline.

This PR adds the trailing newline to the ecosystem check script.
This commit is contained in:
Micha Reiser
2023-03-18 11:04:50 +01:00
committed by GitHub
parent 621e4353e3
commit 404504ab41

View File

@@ -65,6 +65,7 @@ jobs:
then
echo "### Ecosystem" >> $GITHUB_OUTPUT
cat pr/ecosystem/ecosystem-result >> $GITHUB_OUTPUT
echo "" >> $GITHUB_OUTPUT
fi
if [[ -f pr/benchmark/summary.md ]]