Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/mobile-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 ...`
Expand Down Expand Up @@ -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,
Expand Down
Loading