(tag: string, body: string, rootDir: string)
| 387 | |
| 388 | /** Update an existing GitHub release's body */ |
| 389 | export async function updateReleaseBody(tag: string, body: string, rootDir: string): Promise<void> { |
| 390 | await withReleaseToken(() => runArgsAsync(['gh', 'release', 'edit', tag, '--notes', body], { cwd: rootDir })); |
| 391 | } |
| 392 | |
| 393 | /** Finalize a draft release (remove draft status) */ |
| 394 | export async function finalizeRelease(tag: string, rootDir: string): Promise<void> { |
no test coverage detected
searching dependent graphs…