From 8b0be78c9043a3f1e56377ae7905bf9a29e99f50 Mon Sep 17 00:00:00 2001 From: Dawid Dziurla Date: Sun, 1 Mar 2020 12:41:15 +0100 Subject: [PATCH] main: use console.log core.info does not print objects --- main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.js b/main.js index 773d5495..505cad4a 100644 --- a/main.js +++ b/main.js @@ -41,7 +41,7 @@ async function main() { html: html == "true" ? get_body(body) : undefined, }) - core.info(info.toString()) + console.log(info) } catch (error) { core.setFailed(error.message) }