File tree 2 files changed +3
-3
lines changed 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ inputs:
83
83
required : false
84
84
85
85
tag :
86
- description : " Add a tag to the commit. Only works when 'dry-run' is not used."
86
+ description : " Add a tag to the commit, this can be used like so: 'v0.1' . Only works when 'dry-run' is not used."
87
87
required : false
88
88
89
89
single-commit :
Original file line number Diff line number Diff line change @@ -317,13 +317,13 @@ 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
- info ( `Adding tag '${ action . tag } ' to the commit` )
320
+ info ( `Adding '${ action . tag } ' tag to the commit… ` )
321
321
await execute (
322
322
`git tag ${ action . tag } ` ,
323
323
`${ action . workspace } /${ temporaryDeploymentDirectory } ` ,
324
324
action . silent
325
325
)
326
- info ( `Pushing tag '${ action . tag } ' to repository. ` )
326
+ info ( `Pushing '${ action . tag } ' tag to repository… ` )
327
327
await execute (
328
328
`git push origin ${ action . tag } ` ,
329
329
`${ action . workspace } /${ temporaryDeploymentDirectory } ` ,
You can’t perform that action at this time.
0 commit comments