-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.releaserc
More file actions
43 lines (43 loc) · 1018 Bytes
/
.releaserc
File metadata and controls
43 lines (43 loc) · 1018 Bytes
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
{
"branches": ["main", "beta", "internal"],
"debug": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"prepareCmd": "./gradlew bumperSemanticRelease -PbumperVersionName=${nextRelease.version} --stacktrace"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "./gradlew assemble --stacktrace"
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "./gradlew bundleRelease --stacktrace"
}
],
"@semantic-release/git",
[
"@semantic-release/github",
{
"assets": [
{
"path": "app/build/outputs/apk/release/*.apk",
"name": "App-${nextRelease.version}.apk"
},
{
"path": "app/build/outputs/bundle/release/*.aab",
"name": "App-${nextRelease.version}.aab"
},
]
}
]
]
}