Skip to content

Commit afdf0c0

Browse files
committed
chore: debug build cmd and args
Signed-off-by: CrazyMax <[email protected]>
1 parent 00ae31a commit afdf0c0

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

src/main.ts

+7
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ actionsToolkit.run(
1717
// main
1818
async () => {
1919
const inputs: context.Inputs = await context.getInputs();
20+
core.debug(`inputs: ${JSON.stringify(inputs)}`);
21+
2022
const toolkit = new Toolkit();
2123

2224
await core.group(`GitHub Actions runtime token ACs`, async () => {
@@ -73,7 +75,12 @@ actionsToolkit.run(
7375
});
7476

7577
const args: string[] = await context.getArgs(inputs, toolkit);
78+
core.debug(`context.getArgs: ${JSON.stringify(args)}`);
79+
7680
const buildCmd = await toolkit.buildx.getCommand(args);
81+
core.debug(`buildCmd.command: ${buildCmd.command}`);
82+
core.debug(`buildCmd.args: ${JSON.stringify(buildCmd.args)}`);
83+
7784
await Exec.getExecOutput(buildCmd.command, buildCmd.args, {
7885
ignoreReturnCode: true
7986
}).then(res => {

0 commit comments

Comments
 (0)