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}`); }