From 8049abfd1c91aef4b91e4b7221e9883af94ffbb3 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Wed, 13 Jul 2022 16:09:19 -0500 Subject: [PATCH] Add export for CAPSULE_LOG to 'none' --- index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/index.ts b/index.ts index 8a7e2bd..50eb337 100644 --- a/index.ts +++ b/index.ts @@ -97,6 +97,9 @@ async function install_nextflow(url, version) { } async function run() { + // Set environment variables + core.exportVariable("CAPSULE_LOG", "none"); + // Read in the arguments const token = core.getInput("token"); const version = core.getInput("version");