feat: add smart banner and universal links for folo domains #358
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: π± Build iOS for development | |
| on: | |
| push: | |
| branches: | |
| - "**" | |
| paths: | |
| - "apps/mobile/web-app/**" | |
| - "apps/mobile/native/**" | |
| - "apps/mobile/package.json" | |
| - "apps/mobile/app.config.ts" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| check-runner: | |
| 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-device-self-hosted: | |
| name: Build iOS IPA for device (self-hosted) | |
| if: github.secret_source != 'None' && 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 development --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@v6 | |
| with: | |
| name: app-ios-development-device | |
| path: apps/mobile/build.ipa | |
| retention-days: 90 | |
| - name: Clear Xcode cache | |
| run: | | |
| rm -rf ~/Library/Developer/Xcode/DerivedData | |
| build-ipa-device-github: | |
| name: Build iOS IPA for device (GitHub-hosted) | |
| if: github.secret_source != 'None' && 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 development --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@v6 | |
| with: | |
| name: app-ios-development-device | |
| path: apps/mobile/build.ipa | |
| retention-days: 90 | |
| build-simulator: | |
| name: Build iOS IPA for simulator | |
| if: github.secret_source != 'None' | |
| 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 ios-simulator --non-interactive --local --output=./build-simulator.ipa | |
| env: | |
| CI: true | |
| SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }} | |
| # Optional: Upload artifact | |
| - name: π€ Upload IPA | |
| uses: actions/upload-artifact@v6 | |
| with: | |
| name: app-ios-development-simulator | |
| path: apps/mobile/build-simulator.ipa | |
| retention-days: 90 |