Reduce tools/publish-crates.sh to only publish bindings and sdk (#3180)

# Description of Changes

Fixes https://github.com/clockworklabs/SpacetimeDB/issues/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>
This commit is contained in:
Zeke Foppa
2025-08-19 13:13:38 -07:00
committed by Zeke Foppa
parent d4ef20f459
commit 07ce51dca3
+1 -2
View File
@@ -39,8 +39,7 @@ if [ $DRY_RUN -ne 1 ]; then
fi
BASEDIR=$(pwd)
# TODO: Do we really need to publish the `cli` and `standalone` crates?
declare -a ROOTS=(bindings sdk cli standalone)
declare -a ROOTS=(bindings sdk)
declare -a CRATES=($(python3 tools/find-publish-list.py --recursive --quiet "${ROOTS[@]}"))
echo Crates to publish: "${CRATES[@]}"