From 978bdaf8fea3090805b9f215bbf423db334a487b Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Tue, 21 Feb 2023 12:39:38 +0100 Subject: [PATCH] Publish crates without `--no-verify` We've had multiple bug breaking `cargo install` now, which would have been caught by this. --- tools/release-operator/src/registry.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/tools/release-operator/src/registry.rs b/tools/release-operator/src/registry.rs index 49690178b..71fe085d4 100644 --- a/tools/release-operator/src/registry.rs +++ b/tools/release-operator/src/registry.rs @@ -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 {