From 937049eba455d3c279e3482a1a74c5ad759d1068 Mon Sep 17 00:00:00 2001 From: Greaka Date: Tue, 31 Oct 2023 11:11:59 +0100 Subject: [PATCH] console log action output --- dist/index.js | 2 +- src/main.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index e855868..a4841cf 100644 --- a/dist/index.js +++ b/dist/index.js @@ -30197,7 +30197,7 @@ function fetchInputs() { } function setOutput(matrix, fallback = false) { const matrix_string = JSON.stringify(matrix); - core.debug(` + console.log(` Output: matrix: ${matrix_string} fallback: ${fallback} diff --git a/src/main.ts b/src/main.ts index 5692bc2..1781ac3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -115,7 +115,7 @@ function fetchInputs() { function setOutput(matrix: string[], fallback = false) { const matrix_string = JSON.stringify(matrix); - core.debug(` + console.log(` Output: matrix: ${matrix_string} fallback: ${fallback}