Release process for beta

This commit is contained in:
Louis Lam
2022-03-21 14:31:29 +08:00
parent 9173838e1b
commit 58ee071fae
5 changed files with 3570 additions and 73 deletions

View File

@@ -37,6 +37,9 @@ if (! exists) {
function tag(version) {
let res = child_process.spawnSync("git", ["tag", version]);
console.log(res.stdout.toString().trim());
res = child_process.spawnSync("git", ["push", "origin", version]);
console.log(res.stdout.toString().trim());
}
function tagExists(version) {