-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy path.releaserc.json
35 lines (35 loc) · 1.15 KB
/
.releaserc.json
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
{
"tagFormat": "${version}",
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "conventionalcommits"
}],
["@semantic-release/release-notes-generator", {
"preset": "conventionalcommits"
}],
["semantic-release-recovery", {
"plugins": [
["semantic-release-precheck", {
"is_it_deployed": {
"package_manager": "cocoapods",
"package_name": "Wendy"
},
"deploy_plugin":
["semantic-release-cocoapods", {
"podLint": false,
"podPushArgs": "--allow-warnings"
}]
}]
]
}],
["@semantic-release/git", {
"assets": ["*.podspec", "Source/**/*.generated.swift"],
"message": "chore: update metadata for release ${nextRelease.version}"
}],
["@semantic-release/github", {
"labels": false,
"successComment": false,
"failTitle": false
}]
]
}