We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7e2aca8 commit 8313342Copy full SHA for 8313342
scripts/release.js
@@ -36,7 +36,7 @@ async function release() {
36
await exec.promise('git pull');
37
await exec.promise('npm i');
38
await exec.promise('git add .');
39
- await exec.promise(`git commit -m "${pkg.version} release"`);
+ await exec.promise(`git commit -m ${pkg.version}`);
40
await exec.promise('git push');
41
await exec.promise(`git tag v${pkg.version}`);
42
await exec.promise('git push origin --tags');
0 commit comments