MCPcopy Create free account
hub / github.com/dmno-dev/bumpy / finalizeRelease

Function finalizeRelease

packages/bumpy/src/core/github-release.ts:394–396  ·  view source on GitHub ↗
(tag: string, rootDir: string)

Source from the content-addressed store, hash-verified

392
393/** Finalize a draft release (remove draft status) */
394export async function finalizeRelease(tag: string, rootDir: string): Promise<void> {
395 await withReleaseToken(() => runArgsAsync(['gh', 'release', 'edit', tag, '--draft=false'], { cwd: rootDir }));
396}
397
398/** Delete a GitHub release */
399export async function deleteRelease(tag: string, rootDir: string): Promise<void> {

Callers 2

runPublishFlowFunction · 0.90
finalizeSupersededDraftsFunction · 0.85

Calls 2

runArgsAsyncFunction · 0.90
withReleaseTokenFunction · 0.85

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…