summaryrefslogtreecommitdiffstats
path: root/extra/update-wiki-version.js
blob: f6c961213f8eae6597fae8a016b704e59ed0b99e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
const childProcess = require("child_process");
const fs = require("fs");

const newVersion = process.env.RELEASE_VERSION;

if (!newVersion) {
    console.log("Missing version");
    process.exit(1);
}

updateWiki(newVersion);

/**
 * Update the wiki with new version number
 * @param {string} newVersion Version to update to
 * @returns {void}
 */
function updateWiki(newVersion) {
    const wikiDir = "./tmp/wiki";
    const howToUpdateFilename = "./tmp/wiki/🆙-How-to-Update.md";

    safeDelete(wikiDir);

    childProcess.spawnSync("git", [ "clone", "https://github.com/louislam/uptime-kuma.wiki.git", wikiDir ]);
    let content = fs.readFileSync(howToUpdateFilename).toString();

    // Replace the version: https://regex101.com/r/hmj2Bc/1
    content = content.replace(/(git checkout )([^\s]+)/, `$1${newVersion}`);
    fs.writeFileSync(howToUpdateFilename, content);

    childProcess.spawnSync("git", [ "add", "-A" ], {
        cwd: wikiDir,
    });

    childProcess.spawnSync("git", [ "commit", "-m", `Update to ${newVersion}` ], {
        cwd: wikiDir,
    });

    console.log("Pushing to Github");
    childProcess.spawnSync("git", [ "push" ], {
        cwd: wikiDir,
    });

    safeDelete(wikiDir);
}

/**
 * Check if a directory exists and then delete it
 * @param {string} dir Directory to delete
 * @returns {void}
 */
function safeDelete(dir) {
    if (fs.existsSync(dir)) {
        fs.rm(dir, {
            recursive: true,
        });
    }
}