remove debug lines and add changelog

This commit is contained in:
Austin Valle 2023-10-27 09:26:31 -04:00
parent b5030288b9
commit fd5f36a60a
3 changed files with 7 additions and 12 deletions

View file

@ -34,7 +34,7 @@ async function checkTerraform () {
const options = {
listeners,
ignoreReturnCode: true,
silent: true, // work around github.com/actions/toolkit#649
silent: true, // avoid printing command in stdout: https://github.com/actions/toolkit/issues/649
};
const exitCode = await exec(pathToCLI, args, options);
@ -42,11 +42,6 @@ async function checkTerraform () {
process.stdout.write(stdout.contents);
process.stderr.write(stderr.contents);
core.debug(`Terraform exited with code ${exitCode}.`);
core.debug(`stdout: ${stdout.contents}`);
core.debug(`stderr: ${stderr.contents}`);
core.debug(`exitcode: ${exitCode}`);
// Set outputs, result, exitcode, and stderr
core.setOutput('stdout', stdout.contents);
core.setOutput('stderr', stderr.contents);