Skip to content

Build Production

Build Production #12

Workflow file for this run

name: Build Production
on:
workflow_dispatch:
jobs:
build:
runs-on: macos-latest
steps:
- name: πŸ— Setup repo
uses: actions/checkout@v4
- name: πŸ— Setup Node
uses: actions/setup-node@v4
with:
node-version: latest
- name: πŸ— Setup Bun
uses: oven-sh/setup-bun@v2
- name: πŸ— Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
packager: bun
token: ${{ secrets.EXPO_TOKEN }}
patch-watchers: false
- name: πŸ“¦ Install dependencies
run: bun install
working-directory: apps/mobile
- name: 🚧 Build app
run: eas build --profile production --platform ios --non-interactive --local --output ${{ github.workspace }}/build.ipa
working-directory: apps/mobile
- name: ⬆️ Upload IPA
uses: actions/upload-artifact@v4
with:
path: ${{ github.workspace }}/build.ipa