Skip to content

Commit

Permalink
Publish crates without --no-verify
Browse files Browse the repository at this point in the history
We've had multiple bug breaking `cargo install` now, which would have
been caught by this.
  • Loading branch information
hannobraun committed Feb 21, 2023
1 parent a06b197 commit 978bdaf
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions tools/release-operator/src/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -189,10 +189,6 @@ impl Crate {
command
.arg("publish")
.args(["--token", token.unsecure()])
// By this point in the process, the crates have been built
// successfully multiple times. No reason to slow down the
// release by building them again.
.arg("--no-verify")
.current_dir(&self.path);

if dry_run {
Expand Down

0 comments on commit 978bdaf

Please sign in to comment.