Skip to content

Commit 8b661ae

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

File tree

7 files changed

+36
-13
lines changed

7 files changed

+36
-13
lines changed

.github/workflows/push.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ jobs:
1818
id: release
1919
with:
2020
token: ${{ secrets.GH_TOKEN }}
21-
release-type: rust
2221
outputs:
23-
release_created: ${{ steps.release.outputs.release_created }}
24-
version: ${{ steps.release.outputs.tag_name }}
22+
release_created: ${{ steps.release.outputs.releases_created }}
23+
version: ${{ steps.release.outputs.standalone--tag_name }}
2524
docker-publish:
2625
needs: release-please
2726
if: ${{ needs.release-please.outputs.release_created == 'true' }}

.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: 29 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,33 @@
11
{
2-
"bootstrap-sha": "8e89e45eb48c8c8428e779c54f3a167a7bded304",
2+
"include-component-in-tag": false,
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+
]
16+
}
17+
],
318
"packages": {
4-
".": {
5-
"release-type": "rust"
19+
"cf-worker": {
20+
"release-type": "rust",
21+
"component": "cf-worker"
22+
},
23+
"standalone": {
24+
"release-type": "rust",
25+
"component": "standalone"
26+
},
27+
"shared-lib": {
28+
"release-type": "rust",
29+
"component": "shared-lib"
630
}
7-
}
31+
},
32+
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
833
}

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)