File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6771,7 +6771,6 @@ async function setupAuth(){
67716771 */
67726772 const authObjString = core . getInput ( "authObjString" ) ;
67736773 try {
6774- core . info ( `auth Obj string is ${ authObjString } ` )
67756774
67766775 if ( ! authObjString || authObjString === "" ) {
67776776 throw Error ( 'Cannot find auth object string' )
@@ -6788,7 +6787,7 @@ async function setupAuth(){
67886787 } )
67896788
67906789 const stackqlAuthString = JSON . stringify ( authObj )
6791- core . info ( ' Setting AUTH string %o' , stackqlAuthString )
6790+ core . info ( ` Setting AUTH string ${ stackqlAuthString } ` )
67926791 core . exportVariable ( 'AUTH' , stackqlAuthString )
67936792
67946793 } catch ( error ) {
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ async function setupAuth(){
6969 */
7070 const authObjString = core . getInput ( "authObjString" ) ;
7171 try {
72- core . info ( `auth Obj string is ${ authObjString } ` )
7372
7473 if ( ! authObjString || authObjString === "" ) {
7574 throw Error ( 'Cannot find auth object string' )
@@ -86,7 +85,7 @@ async function setupAuth(){
8685 } )
8786
8887 const stackqlAuthString = JSON . stringify ( authObj )
89- core . info ( ' Setting AUTH string %o' , stackqlAuthString )
88+ core . info ( ` Setting AUTH string ${ stackqlAuthString } ` )
9089 core . exportVariable ( 'AUTH' , stackqlAuthString )
9190
9291 } catch ( error ) {
You can’t perform that action at this time.
0 commit comments