Skip to content

Commit

Permalink
chore: exclude non-workspace members from being released (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
zvolin authored Jan 10, 2024
1 parent 7de8386 commit abeb170
Showing 1 changed file with 27 additions and 0 deletions.
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

0 comments on commit abeb170

Please sign in to comment.