From fc905a2fc68e873f9f3b6cc7eb75ddea116437b9 Mon Sep 17 00:00:00 2001 From: Douglas Lowder Date: Mon, 23 Feb 2026 19:29:48 -0800 Subject: [PATCH] [release] Work around the removal of yarn --silent --- scripts/src/release.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/src/release.sh b/scripts/src/release.sh index 6bca09ada9..841848dc09 100755 --- a/scripts/src/release.sh +++ b/scripts/src/release.sh @@ -12,9 +12,11 @@ ROOT_DIR="$( cd "$SCRIPTS_DIR"/.. && pwd )" # to @expo/eas-build-job dependency, so the update-local-plugin step is no longer needed. # $SCRIPTS_DIR/bin/run update-local-plugin -next_version_bump=$($SCRIPTS_DIR/bin/run next-version) +next_version_bump=`(cd $SCRIPTS_DIR; node --no-warnings=ExperimentalWarning --loader ts-node/esm src/nextVersion.ts)` next_version=${1:-$next_version_bump} +echo "next_version = ${next_version}" + if [[ "$GITHUB_USER" == "Expo CI" && "$GITHUB_EMAIL" == "support+ci@expo.io" && "$INPUT_DRY_RUN" != "true" ]]; then echo "Releasing with version $next_version" lerna version --yes --exact "$next_version"