From 678377bd80075b8771c3940a5c24f63200fcfad1 Mon Sep 17 00:00:00 2001 From: Jonathan Camara Date: Wed, 27 Apr 2022 15:51:57 -0500 Subject: [PATCH] fix: make visible the path being extracted --- dist/index.js | 1 + lib/setup-terraform.js | 1 + 2 files changed, 2 insertions(+) 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);