Skip to content

Commit 07ce51d

Browse files
committed
Reduce tools/publish-crates.sh to only publish bindings and sdk (#3180)
# Description of Changes Fixes #3017. See that issue for more context. # API and ABI breaking changes None # Expected complexity level and risk 1 # Testing We should do a little extra verification on the next release. --------- Co-authored-by: Zeke Foppa <bfops@users.noreply.github.com>
1 parent d4ef20f commit 07ce51d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tools/publish-crates.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ if [ $DRY_RUN -ne 1 ]; then
3939
fi
4040

4141
BASEDIR=$(pwd)
42-
# TODO: Do we really need to publish the `cli` and `standalone` crates?
43-
declare -a ROOTS=(bindings sdk cli standalone)
42+
declare -a ROOTS=(bindings sdk)
4443
declare -a CRATES=($(python3 tools/find-publish-list.py --recursive --quiet "${ROOTS[@]}"))
4544

4645
echo Crates to publish: "${CRATES[@]}"

0 commit comments

Comments
 (0)