mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-15 01:54:10 -08:00
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
import "dotenv/config";
|
|
import {
|
|
ver,
|
|
buildDist,
|
|
buildImage,
|
|
checkDocker,
|
|
checkTagExists,
|
|
checkVersionFormat,
|
|
dryRun,
|
|
getRepoName,
|
|
pressAnyKey,
|
|
execSync, uploadArtifacts,
|
|
} from "./lib.mjs";
|
|
import semver from "semver";
|
|
|
|
const repoName = getRepoName();
|
|
const version = process.env.RELEASE_BETA_VERSION;
|
|
const githubToken = process.env.RELEASE_GITHUB_TOKEN;
|
|
|
|
console.log("RELEASE_BETA_VERSION:", version);
|
|
|
|
if (!githubToken) {
|
|
console.error("GITHUB_TOKEN is required");
|
|
process.exit(1);
|
|
}
|
|
|
|
// Check if the version is a valid semver
|
|
checkVersionFormat(version);
|
|
|
|
// Check if the semver identifier is "beta"
|
|
const semverIdentifier = semver.prerelease(version);
|
|
console.log("Semver identifier:", semverIdentifier);
|
|
if (semverIdentifier[0] !== "beta") {
|
|
console.error("VERSION should have a semver identifier of 'beta'");
|
|
process.exit(1);
|
|
}
|
|
|
|
// Check if docker is running
|
|
checkDocker();
|
|
|
|
// Check if the tag exists
|
|
await checkTagExists(repoName, version);
|
|
|
|
// node extra/beta/update-version.js
|
|
execSync("node ./extra/beta/update-version.js");
|
|
|
|
// Build frontend dist
|
|
buildDist();
|
|
|
|
// Build slim image (rootless)
|
|
buildImage(repoName, [ "beta-slim-rootless", ver(version, "slim-rootless") ], "rootless", "BASE_IMAGE=louislam/uptime-kuma:base2-slim");
|
|
|
|
// Build full image (rootless)
|
|
buildImage(repoName, [ "beta-rootless", ver(version, "rootless") ], "rootless");
|
|
|
|
// Build slim image
|
|
buildImage(repoName, [ "beta-slim", ver(version, "slim") ], "release", "BASE_IMAGE=louislam/uptime-kuma:base2-slim");
|
|
|
|
// Build full image
|
|
buildImage(repoName, [ "beta", version ], "release");
|
|
|
|
await pressAnyKey();
|
|
|
|
// npm run upload-artifacts
|
|
uploadArtifacts();
|