From f3201bc41db2c624d7f7d4d511c456b2216c4bfe Mon Sep 17 00:00:00 2001 From: Harris Borawski Date: Wed, 15 Nov 2023 10:45:47 -0800 Subject: [PATCH] build: comment out major doc deploy for now (#235) comment out major doc deploy for now --- scripts/release.sh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/scripts/release.sh b/scripts/release.sh index 0f80116d5..067ef57b2 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -40,8 +40,10 @@ elif [ "$RELEASE_TYPE" == "release" ] && [ "$CURRENT_BRANCH" == "main" ]; then STABLE_DOCS_BASE_PATH=latest bazel run --verbose_failures --config=release //docs:deploy_docs -- --dest_dir latest fi +# Commented out for now due to failures to deploy +# causes lots of "java.io.IOException: io.grpc.StatusRuntimeException: CANCELLED: Failed to read message." messages in the build # Also deploy to the versioned folder for main releases -if [ "$RELEASE_TYPE" == "release" ]; then - SEMVER_MAJOR=$(cat VERSION | cut -d. -f1) - STABLE_DOCS_BASE_PATH=$SEMVER_MAJOR bazel run --verbose_failures --config=release //docs:deploy_docs -- --dest_dir "$SEMVER_MAJOR" -fi +# if [ "$RELEASE_TYPE" == "release" ]; then +# SEMVER_MAJOR=$(cat VERSION | cut -d. -f1) +# STABLE_DOCS_BASE_PATH=$SEMVER_MAJOR bazel run --verbose_failures --config=release //docs:deploy_docs -- --dest_dir "$SEMVER_MAJOR" +# fi