forked from matter-labs/block-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc
72 lines (72 loc) · 1.69 KB
/
.releaserc
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
{
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
"next",
"next-major",
{
"name": "beta",
"prerelease": true
},
{
"name": "alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "npm run build-storybook",
"publishCmd": "zip -r storybook-static.zip storybook-static",
"execCwd": "packages/app"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "VITE_VERSION=${nextRelease.version} npm run build",
"publishCmd": "zip -r dist.zip dist",
"execCwd": "packages/app"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "./node_modules/.bin/sentry-cli releases new ${nextRelease.version}",
"publishCmd": "./node_modules/.bin/sentry-cli releases files ${nextRelease.version} upload-sourcemaps packages/app/dist",
"successCmd": "./node_modules/.bin/sentry-cli releases finalize ${nextRelease.version}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "packages/app/dist.zip",
"label": "App dist package"
},
{
"path": "packages/app/storybook-static.zip",
"label": "Storybook package"
}
]
}
],
[
"@semantic-release/exec",
{
"successCmd": "echo '::set-output name=releaseVersion::${nextRelease.version}'"
}
]
]
}