forked from SlexAxton/css-colorguard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.releaserc.json
69 lines (68 loc) · 1.81 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
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
{
"branches": ["master"],
"plugins": [
[
"semantic-release-gitmoji",
{
"releaseRules": {
"major": [":boom:"],
"minor": [":sparkles:"],
"patch": [
":zap:",
":bug:",
":ambulance:",
":lipstick:",
":lock:",
":arrow_down:",
":arrow_up:",
":pushpin:",
":chart_with_upwards_trend:",
":heavy_plus_sign:",
":heavy_minus_sign:",
":wrench:",
":globe_with_meridians:",
":pencil2:",
":rewind:",
":package:",
":alien:",
":children_crossing:",
":iphone:",
":egg:",
":alembic:",
":mag:",
":label:",
":triangular_flag_on_post:",
":goal_net:",
":dizzy:",
":wastebasket:",
":passport_control:",
":adhesive_bandage:",
":necktie:",
":bento:",
":wheelchair:",
":speech_balloon:",
":card_file_box:"
]
},
"releaseNotes": {
"semver": true
}
}
],
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"prepareCmd": "yarn version ${nextRelease.version} && echo '::set-output name=version::${nextRelease.version}'",
"publishCmd": "yarn npm publish --access public"
}
],
"@semantic-release/github",
[
"@semantic-release/git",
{
"message": "🚀 RELEASE: chore(release) - ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}