Skip to content
Merged
Show file tree
Hide file tree
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
50 changes: 50 additions & 0 deletions .github/workflows/ios-release-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: iOS TestFlight (manual)

on:
workflow_dispatch:

concurrency:
group: ios-release-manual-${{ github.ref }}
cancel-in-progress: false

jobs:
build-and-submit:
name: Build and submit iOS
runs-on: macos-latest
timeout-minutes: 90

steps:
- name: Checkout
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '20.19.4'
cache: 'npm'

- name: Setup Expo and EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}

- name: Install dependencies
run: npm ci --include=optional

- name: Build iOS (local)
working-directory: frontend
run: eas build --platform ios --profile production --local --non-interactive --output=${{ github.workspace }}/build.ipa

- name: Submit to TestFlight
working-directory: frontend
run: eas submit --platform ios --profile production --path ${{ github.workspace }}/build.ipa --non-interactive

- name: Upload IPA artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: ios-build-${{ github.ref_name }}-${{ github.sha }}
path: ${{ github.workspace }}/build.ipa
if-no-files-found: ignore
retention-days: 14
63 changes: 63 additions & 0 deletions .github/workflows/ios-release-main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: iOS TestFlight (main)

on:
push:
branches: [main]
Comment thread
coderabbitai[bot] marked this conversation as resolved.
paths-ignore:
- 'backend/**'
- 'convex/**'
- 'docs/**'
- '**.md'
- 'scripts/**'
- 'vercel.json'
- '.github/workflows/ci.yml'
- '.github/workflows/ios-release-dev.yml'
- '.github/ISSUE_TEMPLATE/**'
- '.coderabbit.yaml'
- 'LICENSE'

concurrency:
group: ios-release-main
cancel-in-progress: false

jobs:
build-and-submit:
name: Build and submit iOS
runs-on: macos-latest
timeout-minutes: 90

steps:
- name: Checkout
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v5
with:
node-version: '20.19.4'
cache: 'npm'

- name: Setup Expo and EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}

- name: Install dependencies
run: npm ci --include=optional

- name: Build iOS (local)
working-directory: frontend
run: eas build --platform ios --profile production --local --non-interactive --output=${{ github.workspace }}/build.ipa

- name: Submit to TestFlight
working-directory: frontend
run: eas submit --platform ios --profile production --path ${{ github.workspace }}/build.ipa --non-interactive

- name: Upload IPA artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: ios-build-${{ github.sha }}
path: ${{ github.workspace }}/build.ipa
if-no-files-found: ignore
retention-days: 14
Loading