From 683299ab39cfcc9bf4880f7c2735fa7591f9097f Mon Sep 17 00:00:00 2001 From: a1mer Date: Mon, 27 Nov 2023 14:28:02 +0800 Subject: [PATCH] chore: try to fix release --- release.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/release.mjs b/release.mjs index 267368f..ec56468 100644 --- a/release.mjs +++ b/release.mjs @@ -25,7 +25,8 @@ async function init() { const version = bumpVersion(mode) await $`npm run build` await $`git add .` - await $`git commit -m 'bump ${version}'` + const msg = `bump ${version}` + await $`git commit -m ${msg}` await $`git tag ${version}` await $`git push` await $`git push --tags`