From fbc057e240dc1f89209c0acd2efe164e0c328c4c Mon Sep 17 00:00:00 2001 From: xmz Date: Fri, 19 Apr 2024 14:19:59 +0800 Subject: [PATCH] update config.js --- src/config.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/config.js b/src/config.js index fda0591..a055129 100644 --- a/src/config.js +++ b/src/config.js @@ -39,6 +39,7 @@ const readSshKey = (SshKeyPath) => { }; const initConfig = () => { + console.info('⚠️ [initConfig] start.'); const inputValue = process.env[inputConfigKey] || process.env[`INPUT_${inputConfigKey}`]; if (inputValue) { const path = `${githubWorkspace}/${inputValue}`; @@ -51,6 +52,7 @@ const initConfig = () => { } } }); + console.info('⚠️ [initConfig] end. process.env:', JSON.stringify(process.env)); return; } console.warn('⚠️ [initConfig] CONFIG_PATH is not defined');