File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff 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 => {
You can’t perform that action at this time.
0 commit comments