From e149901e63ddcdb0d818adcd8f8e4dbd0e2738d6 Mon Sep 17 00:00:00 2001 From: Patrick Crumley Date: Wed, 13 Dec 2023 09:31:40 -0800 Subject: [PATCH] update how to for new rust instruction #no_auto_pr (#1390) # Description @swift-nav/devinfra Updating the HowTo to handle the community distribution of all the packages so that the anyone can release it (with the proper creds) --- HOWTO.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/HOWTO.md b/HOWTO.md index 185439568..d93732d4d 100644 --- a/HOWTO.md +++ b/HOWTO.md @@ -324,31 +324,31 @@ cargo install cargo-release make dist-rust ``` -If that doesn't work (consider fixing the make target), otherwise try releasing -`sbp` and `sbp2json` crates separately, first `sbp`, this will do a dry run -first: +If that doesn't work (**status** it don't work, consider fixing the make target), +otherwise try releasing `sbp` and `sbp2json` crates separately, first `sbp`, +this will do a dry run first: ``` -cargo release --package sbp +cargo release --exclude sbp2json ``` Then use `--execute` to actually run the release: ``` -cargo release --package sbp --execute +cargo release --exclude sbp2json --execute ``` Next, release `sbp2son`, first do a dry-run: ``` -cargo release --package sbp2json +cargo release --exclude sbp ``` Then, reset any modifications from the dry run, and then actually release `sbp2son`: ``` git checkout . -cargo release --package sbp2json --execute +cargo release --exclude sbp --execute ``` Then rollback any commits that are created: