From 647a5e5538829de31fdfaad8de523573c417139f Mon Sep 17 00:00:00 2001 From: Nakamoto <33115289+nakassh@users.noreply.github.com> Date: Sat, 25 Jul 2020 02:07:08 -0300 Subject: [PATCH] Update index.js --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index ad2a01a..0d83bde 100644 --- a/index.js +++ b/index.js @@ -8,7 +8,9 @@ const deepmerge = require('deepmerge'); * */ try { + console.log(core.getInput('gae_config_path')); const gaeConfigPath = core.getInput('gae_config_path') || './app.yaml'; + console.log(gaeConfigPath); const fileContents = fs.readFileSync(gaeConfigPath, 'utf8'); let data = yaml.safeLoad(fileContents);