forked from etclabscore/expedition
-
Notifications
You must be signed in to change notification settings - Fork 93
/
.releaserc
51 lines (51 loc) · 1.12 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
{
"tagFormat": "${version}",
"branch": "master",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git",
"@semantic-release/exec"
],
"prepare": [
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"prepareCmd": "./prepare.sh ${nextRelease.version}"
}
]
],
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/git",
"@semantic-release/github",
"@qiwi/semantic-release-gh-pages-plugin",
{
"path": "semantic-release-docker",
"registryUrl": "docker.io"
}
],
"publish": [
"@semantic-release/github",
{
"path": "@qiwi/semantic-release-gh-pages-plugin",
"msg": "github pages release",
"src": "build/",
"branch": "gh-pages",
"pullTagsBranch": ""
},
{
"path": "semantic-release-docker",
"name": "etclabscore/expedition"
}
],
"success": [
"@semantic-release/github"
],
"fail": [
"@semantic-release/github"
]
}