File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ actionsToolkit.run(
17
17
// main
18
18
async ( ) => {
19
19
const inputs : context . Inputs = await context . getInputs ( ) ;
20
+ core . debug ( `inputs: ${ JSON . stringify ( inputs ) } ` ) ;
21
+
20
22
const toolkit = new Toolkit ( ) ;
21
23
22
24
await core . group ( `GitHub Actions runtime token ACs` , async ( ) => {
@@ -73,7 +75,12 @@ actionsToolkit.run(
73
75
} ) ;
74
76
75
77
const args : string [ ] = await context . getArgs ( inputs , toolkit ) ;
78
+ core . debug ( `context.getArgs: ${ JSON . stringify ( args ) } ` ) ;
79
+
76
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
+
77
84
await Exec . getExecOutput ( buildCmd . command , buildCmd . args , {
78
85
ignoreReturnCode : true
79
86
} ) . then ( res => {
You can’t perform that action at this time.
0 commit comments