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', () => {
463
463
name : 'asd' ,
464
464
email : 'as@cat'
465
465
} ,
466
- isTest : TestFlag . NONE
466
+ isTest : TestFlag . HAS_CHANGED_FILES
467
467
} )
468
468
469
469
const response = await deploy ( action )
470
- expect ( execute ) . toBeCalledTimes ( 13 ) // normally 11 runs, +2 of the tag
470
+ expect ( execute ) . toBeCalledTimes ( 16 )
471
471
expect ( response ) . toBe ( Status . SUCCESS )
472
472
} )
473
473
} )
Original file line number Diff line number Diff line change @@ -317,6 +317,7 @@ export async function deploy(action: ActionInterface): Promise<Status> {
317
317
info ( `Changes committed to the ${ action . branch } branch… 📦` )
318
318
319
319
if ( action . tag ) {
320
+ console . log ( 'ADDING TAG!!!' )
320
321
info ( `Adding '${ action . tag } ' tag to the commit…` )
321
322
await execute (
322
323
`git tag ${ action . tag } ` ,
You can’t perform that action at this time.
0 commit comments