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.
This commit is contained in:
Jacob Bolda 2020-08-21 08:14:34 -05:00 committed by GitHub
parent 5de4c8655d
commit 2a9ea029b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,