Skip to content

Commit f8ddd0d

Browse files
committed
test
1 parent bbd5e97 commit f8ddd0d

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

packages/cli/index.ts

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -519,11 +519,20 @@ const main = defineCommand({
519519

520520
const debug = laterRes.debug;
521521

522+
// Visible warning in logs
523+
core.warning(`🔍 Debug Data:\n${JSON.stringify(debug, null, 2)}`);
524+
525+
// Try Job Summary with manual HTML
522526
await core.summary
523-
.addDetails(
524-
"Debug Data",
525-
`\`\`\`json\n${JSON.stringify(debug, null, 2)}\n\`\`\``
526-
)
527+
.addRaw(`
528+
<details>
529+
<summary>🔍 Backend Debug Data</summary>
530+
531+
\`\`\`json
532+
${JSON.stringify(debug, null, 2)}
533+
\`\`\`
534+
535+
</details>`)
527536
.write();
528537

529538
console.warn("\n");

0 commit comments

Comments
 (0)