-
-
Notifications
You must be signed in to change notification settings - Fork 91
/
.releaserc.ts
95 lines (80 loc) · 3.31 KB
/
.releaserc.ts
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import {createRequire} from "module";
import fs from "fs-extra";
import {getBinariesGithubRelease} from "./dist/bindings/utils/binariesGithubRelease.js";
import {cliBinName, defaultLlamaCppGitHubRepo} from "./dist/config.js";
import type {GlobalConfig, Result as SemanticReleaseDryRunResult} from "semantic-release";
const require = createRequire(import.meta.url);
// source: conventional-changelog-writer/templates/footer.hbs
const defaultFooterTemplate = `
{{#if noteGroups}}
{{#each noteGroups}}
### {{title}}
{{#each notes}}
* {{text}}
{{/each}}
{{/each}}
{{/if}}
`.slice(1, -1);
const binariesSourceRelease = await getBinariesGithubRelease();
const homepageUrl = require("./package.json").homepage;
const homepageUrlWithoutTrailingSlash = homepageUrl.endsWith("/")
? homepageUrl.slice(0, -1)
: homepageUrl;
/* eslint-disable @stylistic/max-len */
const newFooterTemplate = defaultFooterTemplate + "\n---\n\n" +
`Shipped with \`llama.cpp\` release [\`${binariesSourceRelease.split("`").join("")}\`](https://github.com/${defaultLlamaCppGitHubRepo}/releases/tag/${encodeURIComponent(binariesSourceRelease)})\n\n` +
`> To use the latest \`llama.cpp\` release available, run \`npx -n ${cliBinName} source download --release latest\`. ([learn more](${homepageUrlWithoutTrailingSlash}/guide/building-from-source#download-new-release))\n`;
/* eslint-enable @stylistic/max-len */
const githubPluginConfig = {
discussionCategoryName: "Releases" as string | boolean
};
const config: Omit<GlobalConfig, "repositoryUrl" | "tagFormat"> = {
branches: [
"master",
{name: "beta", prerelease: true}
],
ci: true,
plugins: [
["@semantic-release/commit-analyzer", {
preset: "angular",
releaseRules: [
{type: "feat", scope: "minor", release: "patch"},
{type: "docs", scope: "README", release: "patch"}
]
}],
["@semantic-release/release-notes-generator", {
writerOpts: {
footerPartial: newFooterTemplate
}
}],
["@semantic-release/exec", {
publishCmd: "npx --no vite-node ./scripts/publishStandalonePrebuiltBinaryModules.ts --packageVersion \"${nextRelease.version}\""
}],
"@semantic-release/npm",
["@semantic-release/github", githubPluginConfig],
["@semantic-release/exec", {
publishCmd: "echo \"${nextRelease.version}\" > .semanticRelease.npmPackage.deployedVersion.txt"
}]
]
};
function getDryRunResult() {
try {
const dryRunResultEnvVarValue = process.env.DRY_RUN_RESULT_FILE_PATH;
if (dryRunResultEnvVarValue == null)
return null;
const dryRunResultValue = fs.readFileSync(dryRunResultEnvVarValue, "utf8");
const res: SemanticReleaseDryRunResult = JSON.parse(dryRunResultValue);
if (res === false)
return null;
console.log("Dry run result:", res);
return res;
} catch (err) {
// do nothing
}
return null;
}
const dryRunResult = getDryRunResult();
console.info("Next release type", dryRunResult?.nextRelease?.type);
if (dryRunResult == null || !(dryRunResult.nextRelease.type === "major" || dryRunResult.nextRelease.type === "minor"))
githubPluginConfig.discussionCategoryName = false;
export default config;