-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrelease-please-config.json
More file actions
83 lines (83 loc) · 2.26 KB
/
Copy pathrelease-please-config.json
File metadata and controls
83 lines (83 loc) · 2.26 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": true,
"include-v-in-tag": true,
"tag-separator": "_",
"packages": {
".": {
"release-type": "simple",
"component": "codescythe_cli",
"package-name": "codescythe_cli",
"changelog-path": "CHANGELOG.md",
"extra-files": [
{
"type": "toml",
"path": "Cargo.toml",
"jsonpath": "$.workspace.package.version"
},
{
"type": "toml",
"path": "crates/codescythe/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/codescythe_cli/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "crates/codescythe_napi/Cargo.toml",
"jsonpath": "$.package.version"
},
{
"type": "toml",
"path": "Cargo.lock",
"jsonpath": "$.package[?(@.name.value=='codescythe')].version"
},
{
"type": "toml",
"path": "Cargo.lock",
"jsonpath": "$.package[?(@.name.value=='codescythe_cli')].version"
},
{
"type": "toml",
"path": "Cargo.lock",
"jsonpath": "$.package[?(@.name.value=='codescythe_napi')].version"
},
{
"type": "json",
"path": "packages/codescythe/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "packages/codescythe-darwin-arm64/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "packages/codescythe-linux-amd64/package.json",
"jsonpath": "$.version"
},
{
"type": "json",
"path": "packages/codescythe-linux-arm64/package.json",
"jsonpath": "$.version"
},
{
"type": "generic",
"path": "crates/codescythe/BUILD.bazel"
},
{
"type": "generic",
"path": "crates/codescythe_cli/BUILD.bazel"
},
{
"type": "generic",
"path": "crates/codescythe_cli/e2e.rs"
}
]
}
}
}