Skip to content

Commit 686a178

Browse files
committed
chore: release-please config stuff
1 parent b5490da commit 686a178

7 files changed

Lines changed: 33 additions & 11 deletions

File tree

.github/workflows/push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
needs: build
1212
runs-on: ubuntu-latest
1313
permissions:
14+
id-token: write
1415
contents: write
1516
pull-requests: write
1617
steps:
1718
- uses: googleapis/release-please-action@v4
1819
id: release
1920
with:
2021
token: ${{ secrets.GH_TOKEN }}
21-
release-type: rust
2222
outputs:
2323
release_created: ${{ steps.release.outputs.release_created }}
2424
version: ${{ steps.release.outputs.tag_name }}

.release-please-manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"hookbuffer-cf-worker": "2.4.7",
3-
"hookbuffer-standalone": "2.4.7",
2+
"cf-worker": "2.4.7",
3+
"standalone": "2.4.7",
44
"shared-lib": "2.4.7"
55
}

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ members = [
44
"standalone",
55
"shared-lib"
66
]
7-
package.version = "2.4.7"
87
resolver = "2"
98

109
[workspace.dependencies]

cf-worker/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hookbuffer-cf-worker"
3-
version.workspace = true
3+
version = "2.4.7"
44
edition = "2021"
55
authors = [ "Zac <git@zac.gg>" ]
66

release-please-config.json

Lines changed: 27 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,31 @@
11
{
22
"bootstrap-sha": "8e89e45eb48c8c8428e779c54f3a167a7bded304",
3-
"packages": {
4-
".": {
5-
"release-type": "rust"
3+
"plugins": [
4+
{
5+
"type": "cargo-workspace",
6+
"merge": false
7+
},
8+
{
9+
"type": "linked-versions",
10+
"groupName": "hookbuffer",
11+
"components": [
12+
"cf-worker",
13+
"standalone",
14+
"shared-lib"
15+
]
616
}
7-
}
17+
],
18+
"release-type": "rust",
19+
"packages": {
20+
"cf-worker": {
21+
"component": "cf-worker"
22+
},
23+
"standalone": {
24+
"component": "standalone"
25+
},
26+
"shared-lib": {
27+
"component": "shared-lib"
28+
},
29+
},
30+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
831
}

shared-lib/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "shared-lib"
3-
version.workspace = true
3+
version = "2.4.7"
44
edition = "2021"
55

66
[features]

standalone/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hookbuffer-standalone"
3-
version.workspace = true
3+
version = "2.4.7"
44
edition = "2021"
55

66
[dependencies]

0 commit comments

Comments
 (0)