forked from deltalgorand/unity-algorand-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc.json
executable file
·52 lines (52 loc) · 1.22 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
{
"tagFormat": "v${version}",
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular"
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"preset": "angular",
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# Changelog\nAll notable changes to this package will be documented in this file.\n\nThe format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)\nand this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).\n"
}
],
[
"@semantic-release/npm",
{
"npmPublish": true,
"tarballDir": "dist"
}
],
[
"@semantic-release/git",
{
"assets": ["package.json", "CHANGELOG.md"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": ["dist/*.tgz", "dist/*.unitypackage"]
}
]
],
"branches": [
"+([0-9])?(.{+([0-9]),x}).x",
"main",
{
"name": "pre",
"prerelease": true
},
{
"name": "exp",
"prerelease": true
}
]
}