diff --git a/src/execute.ts b/src/execute.ts index 51307e2d..cfd29eeb 100644 --- a/src/execute.ts +++ b/src/execute.ts @@ -1,4 +1,4 @@ -import {isDebug} from '@actions/core' +import {debug, isDebug} from '@actions/core' import {exec} from '@actions/exec' let output: string @@ -21,7 +21,7 @@ export async function execute(cmd: string, cwd: string): Promise { } }) - return Promise.resolve(output) + return Promise.resolve(debug(output)) } export function stdout(data: any): string | void {