This commit is contained in:
2025-11-10 13:24:29 -05:00
parent 5cb5e5f973
commit b9c8b3ad74
+6 -1
View File
@@ -29,6 +29,11 @@ jobs:
capture_stdout: true capture_stdout: true
script: neofetch script: neofetch
- name: Convert ANSI to HTML
id: ansi-to-html
uses: justinm/actions-ansi-to-html@v0
with:
input: ${{ steps.gen-sysinfo.outputs.stdout }}
- name: Generate service list - name: Generate service list
run: | run: |
@@ -46,7 +51,7 @@ jobs:
{ {
echo '```' echo '```'
cat <<'EOF' cat <<'EOF'
${{ steps.gen-sysinfo.outputs.stdout }} ${{ step.ansi-to-html.outputs.contents }}
EOF EOF
echo '```' echo '```'
echo "" echo ""