(tag, { cwd, dryRun })
| 37 | * @returns {Promise<any>} |
| 38 | */ |
| 39 | export async function gitTag(tag, { cwd, dryRun }) { |
| 40 | const execArgs = ['tag', tag, '-m', tag]; |
| 41 | return execAsyncPiped('git', execArgs, { cwd }, dryRun); |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * @param {String} tag - tag name |
no test coverage detected