Skip to content

Commit

Permalink
chore: try to fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
a1mersnow committed Nov 27, 2023
1 parent 18e4db5 commit 683299a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion release.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down

0 comments on commit 683299a

Please sign in to comment.