Skip to content

Publish to TestFlight #69

Publish to TestFlight

Publish to TestFlight #69

Workflow file for this run

name: Publish to TestFlight
on:
release:
types: [created]
workflow_dispatch:
jobs:
build-and-upload-app:
name: Build and upload iOS app
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Set up Expo
uses: expo/expo-github-action@v8
with:
expo-version: latest
eas-version: latest
expo-cache: true
token: ${{secrets.EXPO_TOKEN}}
- run: npm install
- run: eas build --profile development --platform ios --non-interactive --local
- name: Upload binary as artifact
uses: actions/upload-artifact@v4
with:
name: binary
path: ${{ github.workspace }}/*.ipa
retention-days: 30