This commit is contained in:
2025-11-10 07:56:41 -05:00
parent b4572de5bf
commit 7f530bfe1b
+12 -8
View File
@@ -42,15 +42,19 @@ 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
# Write system info as a literal code block
{
echo '```'
cat <<'EOF'
${{ steps.gen-sysinfo.outputs.stdout }}
EOF
echo '```'
echo ""
echo "# List of Services"
echo ""
echo "${{ steps.service-table.outputs.table }}"
} > README.md
echo "# List of Services" >> README.md
echo -e "\n\n" >> README.md
echo "${{ steps.service-table.outputs.table }}" >> README.md
- name: Add/Commit README.md
id: commit-readme