diff --git a/dist/index.js b/dist/index.js index be845d6..b70771a 100644 --- a/dist/index.js +++ b/dist/index.js @@ -7824,6 +7824,7 @@ function run() { // Proxy, auth, (etc) are still set up, even if no version is identified // let version = core.getInput('dotnet-version'); + console.log("VERSION: ", version); if (!version) { // Try to fall back to global.json core.debug('No version found, trying to find version from global.json'); diff --git a/src/setup-dotnet.ts b/src/setup-dotnet.ts index 2a0914f..7fe1248 100644 --- a/src/setup-dotnet.ts +++ b/src/setup-dotnet.ts @@ -14,6 +14,7 @@ export async function run() { // Proxy, auth, (etc) are still set up, even if no version is identified // let version = core.getInput('dotnet-version'); + console.log("VERSION: ", version); if (!version) { // Try to fall back to global.json core.debug('No version found, trying to find version from global.json');