64 lines
2.3 KiB
JavaScript
64 lines
2.3 KiB
JavaScript
const branch = process.env.CURRENT_BRANCH || "main";
|
|
|
|
if (!branch) {
|
|
throw new Error("CURRENT_BRANCH not set");
|
|
}
|
|
|
|
/**
|
|
* @type {import("semantic-release").GlobalConfig}
|
|
*/
|
|
const config = {
|
|
branches: ["main"],
|
|
repositoryUrl: "https://github.com/JamsRepos/Jamfin.git",
|
|
plugins: [
|
|
[
|
|
"@semantic-release/commit-analyzer",
|
|
{
|
|
releaseRules: [
|
|
{ scope: "no-release", release: false },
|
|
{ type: "build", release: "patch" },
|
|
{ type: "ci", release: "patch" },
|
|
{ type: "chore", release: "patch" },
|
|
{ type: "docs", release: false },
|
|
{ type: "refactor", release: "patch" },
|
|
{ type: "style", release: "patch" },
|
|
{ breaking: true, release: "major" },
|
|
],
|
|
},
|
|
],
|
|
[
|
|
"@semantic-release/release-notes-generator",
|
|
{
|
|
preset: "conventionalcommits",
|
|
presetConfig: {
|
|
types: [
|
|
{ type: "feat", section: "New Features" },
|
|
{ type: "fix", section: "Bug Fixes" },
|
|
{ type: "perf", section: "Performance Improvements", hidden: false },
|
|
{ type: "revert", section: "Commit Reverts", hidden: false },
|
|
{ type: "build", section: "Build System", hidden: false },
|
|
{ type: "ci", section: "Continuous Integration", hidden: false },
|
|
{ type: "chore", section: "Chores", hidden: false },
|
|
{ type: "docs", section: "Documentation", hidden: false },
|
|
{ type: "style", section: "Style Changes", hidden: false },
|
|
{ type: "refactor", section: "Code Refactoring", hidden: false },
|
|
{ type: "test", section: "Test Cases", hidden: true },
|
|
],
|
|
},
|
|
},
|
|
],
|
|
[
|
|
"@semantic-release/exec",
|
|
{
|
|
successCmd: "node release.purge.js"
|
|
}
|
|
]
|
|
],
|
|
};
|
|
|
|
if (branch === "main") {
|
|
config.plugins.splice(-2, 0, "@semantic-release/github");
|
|
}
|
|
|
|
module.exports = config;
|