diff --git a/dist/index.js b/dist/index.js index fe8a57f..d24d4a3 100644 --- a/dist/index.js +++ b/dist/index.js @@ -37,6 +37,7 @@ function mapOS (os) { async function downloadCLI (url) { core.debug(`Downloading Terraform CLI from ${url}`); const pathToCLIZip = await tc.downloadTool(url); + core.info(`Terraform CLI Download Path is ${pathToCLIZip}`) core.debug('Extracting Terraform CLI zip file'); const pathToCLI = await tc.extractZip(pathToCLIZip); diff --git a/lib/setup-terraform.js b/lib/setup-terraform.js index 2f0b8bf..fcb769c 100644 --- a/lib/setup-terraform.js +++ b/lib/setup-terraform.js @@ -31,6 +31,7 @@ function mapOS (os) { async function downloadCLI (url) { core.debug(`Downloading Terraform CLI from ${url}`); const pathToCLIZip = await tc.downloadTool(url); + core.info(`Terraform CLI Download Path is ${pathToCLIZip}`) core.debug('Extracting Terraform CLI zip file'); const pathToCLI = await tc.extractZip(pathToCLIZip);