(tag, remote = 'origin', { cwd, dryRun })
| 48 | * @returns {Promise<any>} |
| 49 | */ |
| 50 | export async function gitTagPushRemote(tag, remote = 'origin', { cwd, dryRun }) { |
| 51 | const execArgs = ['push', remote, tag]; |
| 52 | return execAsyncPiped('git', execArgs, { cwd }, dryRun); |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * @param {String} tag - tag name |
no test coverage detected