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 - name: Regenerate README
run: | run: |
# Insert system info as a code block # Write system info as a literal code block
echo '```' > README.md {
echo "${{ steps.gen-sysinfo.outputs.stdout }}" >> README.md echo '```'
echo '```' >> README.md cat <<'EOF'
echo -e "\n\n" >> README.md ${{ 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 - name: Add/Commit README.md
id: commit-readme id: commit-readme