From c5636291d568d4b3480d93cf56af58c58547799d Mon Sep 17 00:00:00 2001 From: Gustav Eikaas Date: Wed, 6 Nov 2024 09:49:29 +0100 Subject: [PATCH] . --- github-action/src/releasePr.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/github-action/src/releasePr.ts b/github-action/src/releasePr.ts index 39749745..f400ec3f 100644 --- a/github-action/src/releasePr.ts +++ b/github-action/src/releasePr.ts @@ -57,7 +57,7 @@ export async function release(context: ReleaseArgs) { ); } - const version = "1.2.0" // await getVersion(ciUrl, context.token, pkg.name); + const version = await getVersion(ciUrl, context.token, pkg.name); makeManifest('./package.json', version, context.sha); const zipped = zipBundle(); await uploadBundle(ciUrl, context.token, pkg.name, zipped, version);