From 5cb4a7f9e2a2751f48702efad6dd8161155601de Mon Sep 17 00:00:00 2001 From: Srinivas Bommadevara Date: Thu, 1 Jul 2021 18:59:26 +0530 Subject: [PATCH] added debug lines #2 --- dist/index.js | 1 + lib/setup-maven.js | 1 + src/setup-maven.ts | 1 + 3 files changed, 3 insertions(+) diff --git a/dist/index.js b/dist/index.js index 6bd12b10..ffbb6689 100644 --- a/dist/index.js +++ b/dist/index.js @@ -131,6 +131,7 @@ function run() { return __awaiter(this, void 0, void 0, function* () { try { let version = core.getInput('tekton-version'); + core.debug(`VERSION = '${version}'`); if (version) { yield installer.getTekton(version); } diff --git a/lib/setup-maven.js b/lib/setup-maven.js index 6fa41fc6..7b713871 100644 --- a/lib/setup-maven.js +++ b/lib/setup-maven.js @@ -34,6 +34,7 @@ function run() { return __awaiter(this, void 0, void 0, function* () { try { let version = core.getInput('tekton-version'); + core.debug(`VERSION = '${version}'`); if (version) { yield installer.getTekton(version); } diff --git a/src/setup-maven.ts b/src/setup-maven.ts index 8da83fc1..3b142fa0 100644 --- a/src/setup-maven.ts +++ b/src/setup-maven.ts @@ -4,6 +4,7 @@ import * as installer from './installer'; async function run() { try { let version = core.getInput('tekton-version'); + core.debug(`VERSION = '${version}'`) if (version) { await installer.getTekton(version); }