We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00ae31a commit afdf0c0Copy full SHA for afdf0c0
src/main.ts
@@ -17,6 +17,8 @@ actionsToolkit.run(
17
// main
18
async () => {
19
const inputs: context.Inputs = await context.getInputs();
20
+ core.debug(`inputs: ${JSON.stringify(inputs)}`);
21
+
22
const toolkit = new Toolkit();
23
24
await core.group(`GitHub Actions runtime token ACs`, async () => {
@@ -73,7 +75,12 @@ actionsToolkit.run(
73
75
});
74
76
77
const args: string[] = await context.getArgs(inputs, toolkit);
78
+ core.debug(`context.getArgs: ${JSON.stringify(args)}`);
79
80
const buildCmd = await toolkit.buildx.getCommand(args);
81
+ core.debug(`buildCmd.command: ${buildCmd.command}`);
82
+ core.debug(`buildCmd.args: ${JSON.stringify(buildCmd.args)}`);
83
84
await Exec.getExecOutput(buildCmd.command, buildCmd.args, {
85
ignoreReturnCode: true
86
}).then(res => {
0 commit comments