We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8ddd0d commit 64cee7cCopy full SHA for 64cee7c
packages/cli/index.ts
@@ -519,21 +519,9 @@ const main = defineCommand({
519
520
const debug = laterRes.debug;
521
522
- // Visible warning in logs
523
- core.warning(`🔍 Debug Data:\n${JSON.stringify(debug, null, 2)}`);
524
-
525
- // Try Job Summary with manual HTML
526
- await core.summary
527
- .addRaw(`
528
-<details>
529
-<summary>🔍 Backend Debug Data</summary>
530
531
-\`\`\`json
532
-${JSON.stringify(debug, null, 2)}
533
-\`\`\`
534
535
-</details>`)
536
- .write();
+ console.log("::group::🔍 Backend Debug Data");
+ console.log(JSON.stringify(debug, null, 2));
+ console.log("::endgroup::");
537
538
console.warn("\n");
539
console.warn("⚡️ Your npm packages are published.\n");
0 commit comments