Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: exclude non-workspace members from being released #18

Merged
merged 1 commit into from
Jan 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions .release-plz.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# disable all the crates by default
[workspace]
publish = false
git_tag_enable = false
git_release_enable = false
semver_check = false
changelog_update = false
# TODO: light-client produces some trash files
allow_dirty = true

# enable celestia-tendermint
[[package]]
name = "celestia-tendermint"
publish = true
git_tag_enable = true
git_release_enable = true
semver_check = true
changelog_update = true

# enable celestia-tendermint-proto
[[package]]
name = "celestia-tendermint-proto"
publish = true
git_tag_enable = true
git_release_enable = true
semver_check = true
changelog_update = true