-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.releaserc.mjs
More file actions
76 lines (71 loc) · 2.45 KB
/
Copy path.releaserc.mjs
File metadata and controls
76 lines (71 loc) · 2.45 KB
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
/**
* @type {import('semantic-release').GlobalConfig}
*/
export default {
branches: ["main"],
plugins: [
[
// Analyse commits to determine next version
"@semantic-release/commit-analyzer",
{
preset: "conventionalcommits",
releaseRules: [
{ breaking: true, release: "minor" }, // after 1.0: major
{ revert: true, release: "patch" },
{ type: "feat", release: "patch" }, // after 1.0: minor
{ type: "fix", release: "patch" },
{ type: "perf", release: "patch" },
{ type: "build", release: "patch" },
{ type: "ci", release: "patch" },
{ type: "docs", release: "patch" },
],
},
],
// Generate release notes
"@semantic-release/release-notes-generator",
// Generate changelog
"@semantic-release/changelog",
// Run release preparation script to:
// - bump version numbers in project
// - build and zip server binaries
// Publish script will
// - build and push Docker images to registry
[
"@semantic-release/exec",
{
prepareCmd: "./bin/prepare-release ${lastRelease.version} ${nextRelease.version}"
},
],
// Commit changes made by release prep script back to repository
[
"@semantic-release/git",
{
message:
"release: ${nextRelease.version}\n\n${nextRelease.notes}",
assets: [
"CHANGELOG.md",
"package.json",
"package-lock.json",
"web/package.json",
"web/package-lock.json",
"web/version.ts",
"server/constants/version.go",
"deployment/helm/capsa/Chart.yaml",
"deployment/helm/capsa/charts/capsa-server/Chart.yaml",
"deployment/helm/capsa/charts/capsa-web/Chart.yaml"
],
},
],
// Create a release with release assets
[
"@semantic-release/github",
{
assets: [
{
path: "release/**",
},
],
},
],
],
};