From 68b846914194e617918a940dc1346e84f2abce50 Mon Sep 17 00:00:00 2001 From: Martin M Date: Wed, 20 Dec 2023 16:31:17 +0100 Subject: [PATCH] Update setTag.js --- lib/setTag.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/setTag.js b/lib/setTag.js index 96eddf16c..d6a199644 100644 --- a/lib/setTag.js +++ b/lib/setTag.js @@ -38,10 +38,10 @@ async function doIt() { const cmd = `npm --//registry.npmjs.org/:_authToken=${process.env.NPM_TOKEN} dist-tag add iobroker.${process.env.INPUT_ADAPTER}@${targetRelease} ${process.env.INPUT_TAG}`; try { const result=execSync( cmd, { encoding: 'utf-8' }); -// console.log(result); -// } catch (_e) { -// // console.log (JSON.stringify(e)); -// } + console.log(result); + } catch (_e) { + // console.log (JSON.stringify(e)); + } } return 'done';