uptime-kuma/extra/beta/update-version.js

72 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-03-20 03:08:33 +00:00
const pkg = require("../../package.json");
const fs = require("fs");
2022-04-13 16:30:32 +00:00
const childProcess = require("child_process");
2022-03-20 03:08:33 +00:00
const util = require("../../src/util");
util.polyfill();
const oldVersion = pkg.version;
const version = process.env.VERSION;
console.log("Beta Version: " + version);
if (!version || !version.includes("-beta.")) {
console.error("invalid version, beta version only");
process.exit(1);
}
const exists = tagExists(version);
if (! exists) {
// Process package.json
pkg.version = version;
fs.writeFileSync("package.json", JSON.stringify(pkg, null, 4) + "\n");
2022-03-22 03:30:45 +00:00
commit(version);
2022-03-20 03:08:33 +00:00
tag(version);
} else {
console.log("version tag exists, please delete the tag or use another tag");
process.exit(1);
}
2022-03-22 03:30:45 +00:00
function commit(version) {
let msg = "Update to " + version;
2022-04-13 16:30:32 +00:00
let res = childProcess.spawnSync("git", ["commit", "-m", msg, "-a"]);
2022-03-22 03:30:45 +00:00
let stdout = res.stdout.toString().trim();
console.log(stdout);
if (stdout.includes("no changes added to commit")) {
throw new Error("commit error");
}
2022-03-22 08:45:07 +00:00
2022-04-13 16:30:32 +00:00
res = childProcess.spawnSync("git", ["push", "origin", "master"]);
2022-03-22 08:45:07 +00:00
console.log(res.stdout.toString().trim());
2022-03-22 03:30:45 +00:00
}
2022-03-20 03:08:33 +00:00
function tag(version) {
2022-04-13 16:30:32 +00:00
let res = childProcess.spawnSync("git", ["tag", version]);
2022-03-20 03:08:33 +00:00
console.log(res.stdout.toString().trim());
2022-03-21 06:31:29 +00:00
2022-04-13 16:30:32 +00:00
res = childProcess.spawnSync("git", ["push", "origin", version]);
2022-03-21 06:31:29 +00:00
console.log(res.stdout.toString().trim());
2022-03-20 03:08:33 +00:00
}
function tagExists(version) {
if (! version) {
throw new Error("invalid version");
}
2022-04-13 16:30:32 +00:00
let res = childProcess.spawnSync("git", ["tag", "-l", version]);
2022-03-20 03:08:33 +00:00
return res.stdout.toString().trim() === version;
}
function safeDelete(dir) {
if (fs.existsSync(dir)) {
fs.rmdirSync(dir, {
recursive: true,
});
}
}