forked from tawanorg/claude-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.releaserc.json
More file actions
52 lines (52 loc) · 1.18 KB
/
Copy path.releaserc.json
File metadata and controls
52 lines (52 loc) · 1.18 KB
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
{
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/exec",
{
"prepareCmd": "VERSION=${nextRelease.version} make build-all"
}
],
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
[
"@semantic-release/github",
{
"assets": [
{
"path": "bin/claude-sync-darwin-arm64",
"label": "claude-sync-darwin-arm64"
},
{
"path": "bin/claude-sync-darwin-amd64",
"label": "claude-sync-darwin-amd64"
},
{
"path": "bin/claude-sync-linux-amd64",
"label": "claude-sync-linux-amd64"
},
{
"path": "bin/claude-sync-linux-arm64",
"label": "claude-sync-linux-arm64"
},
{
"path": "bin/checksums.txt",
"label": "checksums.txt"
}
]
}
]
]
}