From ebdbbc1bc5e70412191cd42151c325a33b150954 Mon Sep 17 00:00:00 2001 From: Manuel Zubieta Date: Sat, 26 Jun 2021 14:51:37 -0500 Subject: [PATCH] more debug --- index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.js b/index.js index 8cd9a82..81c13d4 100644 --- a/index.js +++ b/index.js @@ -8,6 +8,8 @@ const shortTags = core.getInput('short_tags') === 'true'; const bumpEachCommit = core.getInput('bump_each_commit') === 'true'; const useTestValue = core.getInput('use_test_value') === 'true'; core.warning(`useTestValue: ${useTestValue}`); +core.info(`useTestValue: ${useTestValue}`); +core.error(`useTestValue: ${useTestValue}`); const cmd = async (command, ...args) => { let output = '', errors = ''; @@ -225,6 +227,8 @@ async function run() { if (useTestValue) { core.warning(`Test Value: ${testValue} -- major pattern ${majorPattern(testValue)} -- minor pattern ${minorPattern(testValue)}`); + core.info(`Test Value: ${testValue} -- major pattern ${majorPattern(testValue)} -- minor pattern ${minorPattern(testValue)}`); + core.error(`Test Value: ${testValue} -- major pattern ${majorPattern(testValue)} -- minor pattern ${minorPattern(testValue)}`); if (majorPattern(testValue)) { major++; minor = 0;