Skip to content

Commit c7c2c78

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

7 files changed

Lines changed: 20 additions & 8 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 & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"hookbuffer-cf-worker": "2.4.7",
33
"hookbuffer-standalone": "2.4.7",
4-
"shared-lib": "2.4.7"
4+
"shared-lib": "2.4.7",
5+
".": "2.4.7"
56
}

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: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
{
22
"bootstrap-sha": "8e89e45eb48c8c8428e779c54f3a167a7bded304",
3+
"plugins": [
4+
"cargo-workspace"
5+
],
6+
"release-type": "rust",
37
"packages": {
8+
"hookbuffer-cf-worker": {},
9+
"hookbuffer-standalone": {},
10+
"shared-lib": {},
411
".": {
5-
"release-type": "rust"
12+
"changelog-path": "CHANGELOG.md",
13+
"bump-minor-pre-major": false,
14+
"bump-patch-for-minor-pre-major": false,
15+
"draft": false,
16+
"prerelease": false
617
}
7-
}
18+
},
19+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
820
}

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)