fix: broken release-please
This commit is contained in:
parent
d78c844c31
commit
089bb2277b
4 changed files with 26 additions and 6 deletions
4
.github/workflows/release-please.yml
vendored
4
.github/workflows/release-please.yml
vendored
|
@ -14,6 +14,10 @@ jobs:
|
|||
steps:
|
||||
- uses: google-github-actions/release-please-action@v4
|
||||
id: release
|
||||
config-file: release-please-config.json
|
||||
# optional. customize path to .release-please-manifest.json
|
||||
manifest-file: .release-please-manifest.json
|
||||
target-branch: ${{ github.ref_name }}
|
||||
with:
|
||||
release-type: rust
|
||||
- uses: actions/checkout@v4
|
||||
|
|
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -743,7 +743,7 @@ checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
|||
|
||||
[[package]]
|
||||
name = "jetstream"
|
||||
version = "0.3.1"
|
||||
version = "0.0.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"async-stream",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "jetstream"
|
||||
version = "0.3.1"
|
||||
version = "0.0.0"
|
||||
edition = "2021"
|
||||
description = "Jetstream is a RPC framework for Rust, based on the 9P protocol and QUIC."
|
||||
license = "BSD-3-Clause"
|
||||
|
|
|
@ -1,14 +1,30 @@
|
|||
{
|
||||
"release-type": "rust",
|
||||
"plugins": ["cargo-workspace"],
|
||||
"packages": {
|
||||
".": {
|
||||
"package-name": "jetstream",
|
||||
"component": "jetstream",
|
||||
"src": {
|
||||
"changelog-path": "CHANGELOG.md",
|
||||
"release-type": "rust",
|
||||
"bump-minor-pre-major": false,
|
||||
"bump-patch-for-minor-pre-major": true,
|
||||
"draft": true,
|
||||
"prerelease": false
|
||||
"prerelease": true
|
||||
},
|
||||
"third_party/rust-p9": {
|
||||
"release-type": "rust",
|
||||
"changelog-path": "CHANGELOG.md",
|
||||
"bump-minor-pre-major": false,
|
||||
"bump-patch-for-minor-pre-major": true,
|
||||
"draft": true,
|
||||
"prerelease": true
|
||||
},
|
||||
"third_party/p9_wire_format_derive": {
|
||||
"release-type": "rust",
|
||||
"changelog-path": "CHANGELOG.md",
|
||||
"bump-minor-pre-major": false,
|
||||
"bump-patch-for-minor-pre-major": true,
|
||||
"draft": true,
|
||||
"prerelease": true
|
||||
}
|
||||
},
|
||||
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json"
|
||||
|
|
Loading…
Reference in a new issue