fix: make visible the path being extracted

This commit is contained in:
Jonathan Camara 2022-04-27 15:51:57 -05:00
parent 8b4c280fc8
commit 678377bd80
No known key found for this signature in database
GPG key ID: E87744B8CC664ACD
2 changed files with 2 additions and 0 deletions

1
dist/index.js vendored
View file

@ -37,6 +37,7 @@ function mapOS (os) {
async function downloadCLI (url) { async function downloadCLI (url) {
core.debug(`Downloading Terraform CLI from ${url}`); core.debug(`Downloading Terraform CLI from ${url}`);
const pathToCLIZip = await tc.downloadTool(url); const pathToCLIZip = await tc.downloadTool(url);
core.info(`Terraform CLI Download Path is ${pathToCLIZip}`)
core.debug('Extracting Terraform CLI zip file'); core.debug('Extracting Terraform CLI zip file');
const pathToCLI = await tc.extractZip(pathToCLIZip); const pathToCLI = await tc.extractZip(pathToCLIZip);

View file

@ -31,6 +31,7 @@ function mapOS (os) {
async function downloadCLI (url) { async function downloadCLI (url) {
core.debug(`Downloading Terraform CLI from ${url}`); core.debug(`Downloading Terraform CLI from ${url}`);
const pathToCLIZip = await tc.downloadTool(url); const pathToCLIZip = await tc.downloadTool(url);
core.info(`Terraform CLI Download Path is ${pathToCLIZip}`)
core.debug('Extracting Terraform CLI zip file'); core.debug('Extracting Terraform CLI zip file');
const pathToCLI = await tc.extractZip(pathToCLIZip); const pathToCLI = await tc.extractZip(pathToCLIZip);