diff --git a/scripts/lib/gh.ts b/scripts/lib/gh.ts index f10bc88bb..d4a25012b 100644 --- a/scripts/lib/gh.ts +++ b/scripts/lib/gh.ts @@ -50,8 +50,8 @@ class Github { public issue = (n: number) => `https://${this.path}/issues/${n}`; - public release = (body: string) => { - const version = hconf("version"); + public release = async (body: string) => { + const version = await hconf("version"); const name = `publish-release/${version}`; git("add", ".");