Skip to content

Commit 7d9911c

Browse files
committed
add exec debug option
1 parent 0222226 commit 7d9911c

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

Diff for: dist/index.js

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/index.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: src/exec.ts

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ export async function execWithOutput(
1717
},
1818
stderr: (data: Buffer) => {
1919
err += data.toString().trim()
20+
},
21+
debug: (data: string) => {
22+
core.debug(data)
2023
}
2124
}
2225
try {

0 commit comments

Comments
 (0)