mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-22 08:38:08 +02:00
chore: add semantic release workflow
This commit is contained in:
parent
5073a76a5b
commit
a11f7a06ae
18 changed files with 2822 additions and 56 deletions
78
scripts/update-public-release-version.mjs
Normal file
78
scripts/update-public-release-version.mjs
Normal file
|
|
@ -0,0 +1,78 @@
|
|||
#!/usr/bin/env node
|
||||
|
||||
import { readFile, writeFile } from 'node:fs/promises';
|
||||
import { dirname, join, resolve } from 'node:path';
|
||||
import { fileURLToPath, pathToFileURL } from 'node:url';
|
||||
|
||||
import {
|
||||
PUBLIC_NPM_PACKAGE_NAME,
|
||||
assertPublicNpmPackageVersion,
|
||||
assertPublicNpmReleaseTag,
|
||||
releasePolicyPath,
|
||||
} from './public-npm-release-metadata.mjs';
|
||||
|
||||
function scriptRootDir() {
|
||||
return resolve(dirname(fileURLToPath(import.meta.url)), '..');
|
||||
}
|
||||
|
||||
async function readJson(path) {
|
||||
return JSON.parse(await readFile(path, 'utf8'));
|
||||
}
|
||||
|
||||
async function writeJson(path, value) {
|
||||
await writeFile(path, `${JSON.stringify(value, null, 2)}\n`);
|
||||
}
|
||||
|
||||
export async function updatePublicReleaseVersion(rootDir, version, tag) {
|
||||
const safeVersion = assertPublicNpmPackageVersion(version);
|
||||
const safeTag = assertPublicNpmReleaseTag(tag);
|
||||
|
||||
const packageJsonPath = join(rootDir, 'package.json');
|
||||
const packageJson = await readJson(packageJsonPath);
|
||||
packageJson.version = safeVersion;
|
||||
await writeJson(packageJsonPath, packageJson);
|
||||
|
||||
const policyPath = releasePolicyPath(rootDir);
|
||||
const policy = await readJson(policyPath);
|
||||
policy.publicNpmPackageVersion = safeVersion;
|
||||
policy.releaseMode = 'npm-public-release-ready';
|
||||
policy.requiredBeforePublishing = [];
|
||||
policy.npm = {
|
||||
...policy.npm,
|
||||
publish: true,
|
||||
registry: policy.npm?.registry ?? null,
|
||||
access: 'public',
|
||||
tag: safeTag,
|
||||
packages: [PUBLIC_NPM_PACKAGE_NAME],
|
||||
};
|
||||
policy.publishedPackageSmoke = {
|
||||
...policy.publishedPackageSmoke,
|
||||
packageName: PUBLIC_NPM_PACKAGE_NAME,
|
||||
version: safeVersion,
|
||||
};
|
||||
await writeJson(policyPath, policy);
|
||||
|
||||
return {
|
||||
version: safeVersion,
|
||||
tag: safeTag,
|
||||
};
|
||||
}
|
||||
|
||||
async function main() {
|
||||
const [version, tag] = process.argv.slice(2);
|
||||
if (!version || !tag) {
|
||||
throw new Error('Usage: node scripts/update-public-release-version.mjs <version> <latest|next>');
|
||||
}
|
||||
|
||||
const result = await updatePublicReleaseVersion(scriptRootDir(), version, tag);
|
||||
process.stdout.write(`Updated ${PUBLIC_NPM_PACKAGE_NAME} release metadata to ${result.version} (${result.tag})\n`);
|
||||
}
|
||||
|
||||
if (import.meta.url === pathToFileURL(process.argv[1] ?? '').href) {
|
||||
try {
|
||||
await main();
|
||||
} catch (error) {
|
||||
process.stderr.write(`${error instanceof Error ? error.stack : String(error)}\n`);
|
||||
process.exitCode = 1;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue