Skip to content

Commit f08f40f

Browse files
committed
chore: Fix spelling
1 parent 2991688 commit f08f40f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ inputs:
8383
required: false
8484

8585
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."
8787
required: false
8888

8989
single-commit:

src/git.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,13 +317,13 @@ export async function deploy(action: ActionInterface): Promise<Status> {
317317
info(`Changes committed to the ${action.branch} branch… 📦`)
318318

319319
if (action.tag) {
320-
info(`Adding tag '${action.tag}' to the commit`)
320+
info(`Adding '${action.tag}' tag to the commit`)
321321
await execute(
322322
`git tag ${action.tag}`,
323323
`${action.workspace}/${temporaryDeploymentDirectory}`,
324324
action.silent
325325
)
326-
info(`Pushing tag '${action.tag}' to repository.`)
326+
info(`Pushing '${action.tag}' tag to repository`)
327327
await execute(
328328
`git push origin ${action.tag}`,
329329
`${action.workspace}/${temporaryDeploymentDirectory}`,

0 commit comments

Comments
 (0)