Skip to content

fix(mobile): improve ipad layouts and detail rendering #1405

fix(mobile): improve ipad layouts and detail rendering

fix(mobile): improve ipad layouts and detail rendering #1405

Workflow file for this run

name: 🍎 Build iOS
on:
push:
branches:
- "**"
paths:
- "apps/mobile/**"
- "pnpm-lock.yaml"
workflow_dispatch:
inputs:
profile:
type: choice
default: preview
options:
- preview
- production
description: "Build profile"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.profile }}
cancel-in-progress: true
jobs:
check-runner:
if: github.secret_source != 'None' && (github.event_name != 'push' || !contains(github.event.head_commit.message || '', 'release(mobile):'))
runs-on: ubuntu-latest
outputs:
runner-label: ${{ steps.set-runner.outputs.runner-label }}
steps:
- name: Set runner
id: set-runner
run: |
runners=$(curl -s -H "Accept: application/vnd.github+json" -H "Authorization: Bearer ${{ secrets.RUNNER_GITHUB_TOKEN }}" "https://api.github.com/repos/${{ github.repository }}/actions/runners")
available=$(echo "$runners" | jq '.runners[]? | select(.status == "online" and .busy == false and .labels[] .name == "macOS")')
if [ -n "$available" ]; then
echo "runner-label=self-hosted" >> $GITHUB_OUTPUT
else
echo "runner-label=macos-latest" >> $GITHUB_OUTPUT
fi
build-ipa-self-hosted:
name: Build iOS IPA (self-hosted)
if: needs.check-runner.outputs.runner-label == 'self-hosted'
needs: check-runner
runs-on: [self-hosted, macOS]
steps:
- name: πŸ“¦ Checkout code
uses: actions/checkout@v6
- name: πŸ“± Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: pnpm install
- name: πŸ”¨ Build iOS IPA
working-directory: apps/mobile
run: eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
env:
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
CI: true
# Optional: Upload artifact
- name: πŸ“€ Upload IPA
uses: actions/upload-artifact@v7
with:
name: app-ios
path: apps/mobile/build.ipa
retention-days: 90
- name: Clear Xcode cache
run: |
rm -rf ~/Library/Developer/Xcode/DerivedData
- name: Submit to App Store
if: github.event.inputs.profile == 'production'
working-directory: apps/mobile
run: eas submit --platform ios --path build.ipa --non-interactive
build-ipa-github:
name: Build iOS IPA (GitHub)
if: needs.check-runner.outputs.runner-label == 'macos-latest'
needs: check-runner
runs-on: macos-latest
steps:
- name: πŸ“¦ Checkout code
uses: actions/checkout@v6
- name: πŸ”§ Setup Xcode
uses: ./.github/actions/setup-xcode
- name: πŸ“¦ Setup pnpm
uses: pnpm/action-setup@v4
- name: πŸ— Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: "pnpm"
- name: πŸ“± Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
run: pnpm install
- name: πŸ”¨ Build iOS IPA
working-directory: apps/mobile
run: eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
env:
CI: true
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
# Optional: Upload artifact
- name: πŸ“€ Upload IPA
uses: actions/upload-artifact@v7
with:
name: app-ios
path: apps/mobile/build.ipa
retention-days: 90
- name: Submit to App Store
if: github.event.inputs.profile == 'production'
working-directory: apps/mobile
run: eas submit --platform ios --path build.ipa --non-interactive