File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -4201,13 +4201,12 @@ async function checkStackQL () {
42014201 const exitCode = await exec ( pathToCLI , args , options ) ;
42024202 core . debug ( `StackQL exited with code ${ exitCode } .` ) ;
42034203 core . debug ( `stdout: ${ stdout . contents } ` ) ;
4204- console . log ( `stderr: ${ stderr . contents } ` ) ;
4204+ core . debug ( `stderr: ${ stderr . contents } ` ) ;
42054205 core . debug ( `exitcode: ${ exitCode } ` ) ;
42064206
42074207 // Set outputs, result, exitcode, and stderr
42084208 core . setOutput ( 'stdout' , stdout . contents ) ;
42094209 core . setOutput ( 'stderr' , stderr . contents ) ;
4210- core . setOutput ( 'exitcode' , exitCode . toString ( 10 ) ) ;
42114210
42124211 if ( ( exitCode === 0 || exitCode === 2 ) && ! stderr . contents ) {
42134212 // A exitCode of 0 is considered a success
@@ -4218,7 +4217,7 @@ async function checkStackQL () {
42184217 }
42194218
42204219 // A non-zero exitCode is considered an error
4221- core . setFailed ( `StackQL exited with error ${ stderr . contents } .` ) ;
4220+ core . setFailed ( `StackQL exited with error: ${ stderr . contents } .` ) ;
42224221} ) ( ) ;
42234222
42244223} ) ( ) ;
You can’t perform that action at this time.
0 commit comments