File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -463,11 +463,11 @@ describe('git', () => {
463463 name : 'asd' ,
464464 email : 'as@cat'
465465 } ,
466- isTest : TestFlag . NONE
466+ isTest : TestFlag . HAS_CHANGED_FILES
467467 } )
468468
469469 const response = await deploy ( action )
470- expect ( execute ) . toBeCalledTimes ( 13 ) // normally 11 runs, +2 of the tag
470+ expect ( execute ) . toBeCalledTimes ( 16 )
471471 expect ( response ) . toBe ( Status . SUCCESS )
472472 } )
473473 } )
Original file line number Diff line number Diff line change @@ -317,6 +317,7 @@ export async function deploy(action: ActionInterface): Promise<Status> {
317317 info ( `Changes committed to the ${ action . branch } branch… 📦` )
318318
319319 if ( action . tag ) {
320+ console . log ( 'ADDING TAG!!!' )
320321 info ( `Adding '${ action . tag } ' tag to the commit…` )
321322 await execute (
322323 `git tag ${ action . tag } ` ,
You can’t perform that action at this time.
0 commit comments