diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e60f6105..262a19f8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -79,10 +79,8 @@ jobs: echo "flash_line=${flash_line}" >> "$GITHUB_OUTPUT" { echo "## Firmware build stats" - echo "```text" - if [ -n "$ram_line" ]; then echo "${ram_line}"; else echo "RAM: not found"; fi - if [ -n "$flash_line" ]; then echo "${flash_line}"; else echo "Flash: not found"; fi - echo "```" + if [ -n "$ram_line" ]; then echo "- ${ram_line}"; else echo "- RAM: not found"; fi + if [ -n "$flash_line" ]; then echo "- ${flash_line}"; else echo "- Flash: not found"; fi } >> "$GITHUB_STEP_SUMMARY" - name: Upload firmware.bin artifact