-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 1.14 KB
/
build-prod.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
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