README formatting correction.

This commit is contained in:
2025-11-10 07:06:11 -05:00
parent b58c24affc
commit 6ee38c7c2b
+11 -9
View File
@@ -40,15 +40,17 @@ jobs:
- name: Regenerate README
run: |
# Insert system info as a code block
echo '```' > README.md
echo "${{ steps.gen-sysinfo.outputs.stdout }}" >> README.md
echo '```' >> README.md
echo -e "\n\n" >> README.md
echo "# List of Services" >> README.md
echo -e "\n\n" >> README.md
echo "${{ steps.service-table.outputs.table }}" >> README.md
{
echo "# List of Services"
echo
echo
echo '```'
printf "%s\n" "${{ steps.gen-sysinfo.outputs.stdout }}"
echo '```'
echo
echo
printf "%s\n" "${{ steps.service-table.outputs.table }}"
} > README.md
- name: Add/Commit README.md
id: commit-readme