Skip to content

Commit

Permalink
fix: broken release-please
Browse files Browse the repository at this point in the history
  • Loading branch information
sevki committed Mar 14, 2024
1 parent d78c844 commit 4fd77bc
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
24 changes: 20 additions & 4 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 4fd77bc

Please sign in to comment.