-
Notifications
You must be signed in to change notification settings - Fork 1
122 lines (99 loc) · 3.11 KB
/
cd.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: CD
on:
push :
branches : [main]
jobs:
build_ios:
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
with:
packager: npm
eas-version: latest
token: ${{ secrets.EXPO_SECRET }}
expo-cache: true
- name: 📦 Install dependencies
run: npm install
- name: Build on EAS
run: eas build -p ios --non-interactive
deploy_ios:
name: Deploy on ios
needs: build_ios
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
with:
packager: npm
eas-version: latest
token: ${{ secrets.EXPO_SECRET }}
expo-cache: true
- name: 📦 Install dependencies
run: npm install
- name: Submit to testflight
run: EXPO_APPLE_APP_SPECIFIC_PASSWORD=${{ secrets.APPLE_APP_SPECIFIC_PASS }} eas submit -p ios --latest --non-interactive
build_android:
needs: deploy_ios
name: Build for android
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
with:
packager: npm
eas-version: latest
token: ${{ secrets.EXPO_SECRET }}
expo-cache: true
- name: 📦 Install dependencies
run: npm install
- name: Set environment vars
run: GOOGLE_MAPS_API_KEY=${{secrets.GOOGLE_MAPS_API_KEY}}
- name: Build on EAS
run: npx eas-cli build -p android --non-interactive
deploy_android:
name: Deploy to android
needs: build_android
runs-on: ubuntu-latest
steps:
- name: 🏗 Setup repo
uses: actions/checkout@v3
- name: 🏗 Setup Node
uses: actions/setup-node@v3
with:
node-version: 20.x
cache: npm
- name: 🏗 Setup EAS
uses: expo/expo-github-action@v7
with:
packager: npm
eas-version: latest
token: ${{ secrets.EXPO_SECRET }}
expo-cache: true
- name: 📦 Install dependencies
run: npm install
- name: Create google service key
run: echo ${{secrets.GOOGLE_PLAY_KEY}} | base64 -d > ./google-api-key.json
- name: Submit to google play
run: npx eas-cli submit -p android --latest --non-interactive