From 713e405f0c3f439f3aaa38cc76a79f420e770c7d Mon Sep 17 00:00:00 2001 From: Luke Tomlinson Date: Mon, 17 May 2021 17:34:53 -0400 Subject: [PATCH] Update index.js --- dist/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/dist/index.js b/dist/index.js index 13eac633..74e0b770 100644 --- a/dist/index.js +++ b/dist/index.js @@ -10251,6 +10251,7 @@ exports.addPath = addPath; function getInput(name, options) { const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || ''; debug(`getInput(${name}) = ${val}`); + debug(`env: ${JSON.stringify(process.env)}`); if (options && options.required && !val) { throw new Error(`Input required and not supplied: ${name}`); }