From d8ea78ba6ee038c6a60cf219eeeabd2c0895c035 Mon Sep 17 00:00:00 2001 From: Justin Hernandez Date: Fri, 12 Jun 2026 21:05:40 -0700 Subject: [PATCH] fix moible deploy (#2173) --- .github/workflows/mobile-deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mobile-deploy.yml b/.github/workflows/mobile-deploy.yml index d53f8c13b..6e2e6485a 100644 --- a/.github/workflows/mobile-deploy.yml +++ b/.github/workflows/mobile-deploy.yml @@ -637,7 +637,7 @@ jobs: run: | echo "🏗️ Building SDK dependencies..." cd ${{ env.APP_PATH }} - pnpm --filter @selfxyz/mobile-app run build:deps --silent || { echo "❌ Dependency build failed"; exit 1; } + pnpm --filter @selfxyz/mobile-app run build:deps || { echo "❌ Dependency build failed"; exit 1; } echo "✅ Dependencies built successfully" # act won't work with macos, but you can test with `bundle exec fastlane ios ...` @@ -1107,7 +1107,7 @@ jobs: run: | echo "🏗️ Building SDK dependencies..." cd ${{ env.APP_PATH }} - pnpm --filter @selfxyz/mobile-app run build:deps --silent || { echo "❌ Dependency build failed"; exit 1; } + pnpm --filter @selfxyz/mobile-app run build:deps || { echo "❌ Dependency build failed"; exit 1; } echo "✅ Dependencies built successfully" # rn-sdk's Android module declares compileOnly xyz.self.sdk:shared-android,