@process-engine/ci_tools
Version:
CI tools for process-engine.io
10 lines (9 loc) • 439 B
TypeScript
type GitTag = string;
export declare function run(...args: any[]): Promise<boolean>;
export declare function getShortDoc(): string;
export declare function printHelp(): void;
/**
* Updates the corresponding GitHub release for `versionTag` using the given `title` and `text`.
*/
export declare function updateGitHubRelease(versionTag: GitTag, title: string, text: string, assets: string[], dryRun?: boolean): Promise<boolean>;
export {};