-
Notifications
You must be signed in to change notification settings - Fork 39
59 lines (44 loc) · 1.37 KB
/
expo.build.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: EAS Local Build
on:
push:
branches: [ "**" ]
pull_request:
branches: [ "**" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '20' # Use the version you prefer
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v8
with:
eas-version: latest
token: ${{ secrets.EXPO_TOKEN }}
- name: Install dependencies
uses: ./.github/actions/install-deps
# - name: 🚀 Build app
# working-directory: ./client
# run: eas build --non-interactive --platform all --local
# - name: Install dependencies
# working-directory: ./client
# run: yarn install
# - name: Install EAS CLI
# run: yarn global add eas-cli
# - name: Configure build
# working-directory: ./client
# run: npx eas build:configure
# If you need additional setup or configurations, add them here
- name: Run Local Build for Android
working-directory: ./apps/expo
run: eas build --non-interactive --platform android --local
- name: Run Local Build for iOS
working-directory: ./apps/expo
run: eas build --non-interactive --platform ios --local