ANSI to HTML attempt 1.
List of Services README Generation / Generate Services List (push) Failing after 1m9s
Renovate / renovate (push) Successful in 3m34s

This commit is contained in:
2025-11-10 14:57:14 -05:00
parent 31f25ba2f3
commit 6016b11f28
+33 -21
View File
@@ -9,16 +9,25 @@ jobs:
readme-services: readme-services:
name: Generate Services List name: Generate Services List
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Checkout - name: Checkout
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 uses: actions/checkout@v4
with: with:
ref: 'main' ref: main
- name: Install yq - name: Install yq & aha (silent)
uses: dcarbone/install-yq-action@4075b4dca348d74bd83f2bf82d30f25d7c54539b # v1.3.1 run: |
set -e
sudo apt-get -qq update >/dev/null
if sudo apt-get -qq install -y yq aha >/dev/null 2>&1; then
echo "✅ Successfully installed yq and aha."
else
echo "❌ Failed to install yq and/or aha." >&2
exit 1
fi
- name: Generate system info - name: Generate system info (ANSI preserved)
id: gen-sysinfo id: gen-sysinfo
uses: appleboy/ssh-action@v1.2.3 uses: appleboy/ssh-action@v1.2.3
with: with:
@@ -27,43 +36,46 @@ jobs:
port: 22 port: 22
key: ${{ secrets.RUNNER_SSH_PRIVATE_KEY }} key: ${{ secrets.RUNNER_SSH_PRIVATE_KEY }}
capture_stdout: true capture_stdout: true
script: neofetch script: neofetch --stdout
- name: Convert ANSI to HTML - name: Convert ANSI to HTML
id: ansi-to-html run: |
uses: justinm/actions-ansi-to-html@v1.0.0 echo "${{ steps.gen-sysinfo.outputs.stdout }}" > sysinfo.ansi
with: cat sysinfo.ansi | aha --black > sysinfo.html
input: ${{ steps.gen-sysinfo.outputs.stdout }}
- name: Generate service list - name: Generate service list
run: | run: |
yq 'explode(.) | .services | to_entries | map({"service": .key, "image": .value.image, "description": (.value.labels."homepage.description" // "")})' docker-compose.yml > services.yml yq 'explode(.) | .services | to_entries | map({"service": .key, "image": .value.image, "description": (.value.labels."homepage.description" // "")})' docker-compose.yml > services.yml
- name: Generate Markdown Table - name: Generate Markdown Table
uses: gazab/create-markdown-table@6686233d7008e8d8b9d4bbdbfd1fb1ae510019f0 # v1.0.7 uses: gazab/create-markdown-table@v1.0.7
id: service-table id: service-table
with: with:
file: ./services.yml file: ./services.yml
- name: Regenerate README - name: Regenerate README (theme-adaptive)
run: | run: |
# Write system info as a literal code block
{ {
echo '```' echo "# System Info"
cat <<'EOF' echo ""
${{ step.ansi-to-html.outputs.contents }} echo '<details><summary>View Neofetch Output</summary>'
EOF echo '<div id="neofetch-output">'
echo '```' echo '<style>'
echo '#neofetch-output pre { font-family: monospace; border-radius: 10px; padding: 1em; overflow-x: auto; }'
echo '@media (prefers-color-scheme: dark) { #neofetch-output pre { background: #000; color: #fff; } }'
echo '@media (prefers-color-scheme: light) { #neofetch-output pre { background: #f8f8f8; color: #000; } }'
echo '</style>'
cat sysinfo.html
echo '</div>'
echo '</details>'
echo "" echo ""
echo "# List of Services" echo "# List of Services"
echo "" echo ""
echo "${{ steps.service-table.outputs.table }}" echo "${{ steps.service-table.outputs.table }}"
} > README.md } > README.md
- name: Add/Commit README.md - name: Add/Commit README.md
id: commit-readme uses: EndBug/add-and-commit@v9
uses: EndBug/add-and-commit@a94899bca583c204427a224a7af87c02f9b325d5 # v9.1.4
with: with:
message: "chore: Update README" message: "chore: Update README"
add: "README.md" add: "README.md"