From 1ae25ac339f009d3fc5d4da0aa5ece8d15552826 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=B8=A5=E6=B5=A9?= Date: Wed, 9 Oct 2024 12:04:57 +0800 Subject: [PATCH] feat: log semantic release result in a grouped output --- index.mjs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.mjs b/index.mjs index 14fbe13..ac4a6f6 100644 --- a/index.mjs +++ b/index.mjs @@ -39,6 +39,9 @@ async function runRelease() { } else { core.setOutput('next_release_published', 'false'); } + await core.group('Semantic Release Result', async () => { + core.info(`result :>> ${JSON.stringify(result, null, 2)}`); + }); } if (process.env.CI) await installDependencies();