From d6001ccfd7af790d0c295aaf9903445833a3e826 Mon Sep 17 00:00:00 2001 From: Charles Lowell Date: Tue, 26 Nov 2024 13:08:10 -0600 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=F0=9F=9A=9C=F0=9F=91=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- www/tasks/publish-matrix.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/www/tasks/publish-matrix.ts b/www/tasks/publish-matrix.ts index a82ccd9..288d37b 100644 --- a/www/tasks/publish-matrix.ts +++ b/www/tasks/publish-matrix.ts @@ -47,6 +47,8 @@ await main(function* () { `matrix=${JSON.stringify({ include })}`, ].join("\n"); + console.log(outputValue); + if (Deno.env.has("GITHUB_OUTPUT")) { const githubOutput = Deno.env.get("GITHUB_OUTPUT") as string; yield* call(() => @@ -54,8 +56,5 @@ await main(function* () { append: true, }) ); - } else { - // for local dev - console.log(outputValue); } });