From 2a9ea029b6e4f9493fe219ea252447c29b640970 Mon Sep 17 00:00:00 2001 From: Jacob Bolda Date: Fri, 21 Aug 2020 08:14:34 -0500 Subject: [PATCH] chore: package .crate as part of publish step (#984) It is very strict about checking that the deps version specified is published. That means we need to have inter-repo deps already published before we hit this step, and therefore cannot do it as part of the prepublish step. --- .changes/config.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.changes/config.json b/.changes/config.json index 782be52a4..12a73ee1b 100644 --- a/.changes/config.json +++ b/.changes/config.json @@ -33,13 +33,13 @@ "command": "echo \"\\`\\`\\`\"", "dryRunCommand": true, "pipe": true - }, - { - "command": "cargo package --no-verify --allow-dirty", - "dryRunCommand": true } - ], - "publish": [ + ] + "publish": [, + { + "command": "cargo package --allow-dirty", + "dryRunCommand": true + }, { "command": "echo \"# Cargo Publish\"", "dryRunCommand": true,