-
Notifications
You must be signed in to change notification settings - Fork 45
207 lines (178 loc) · 6.92 KB
/
react-native-workflow.yml
File metadata and controls
207 lines (178 loc) · 6.92 KB
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
name: React Native Dogfood Release
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
GOOGLE_APPLICATION_CREDENTIALS: '/home/runner/rn-samples-google-services.json'
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_BASIC_AUTHORIZATION: ${{ secrets.MATCH_GIT_BASIC_AUTHORIZATION }}
APP_STORE_CONNECT_API_KEY_KEY_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY_ID }}
APP_STORE_CONNECT_API_KEY_ISSUER_ID: ${{ secrets.APP_STORE_CONNECT_API_KEY_ISSUER_ID }}
APP_STORE_CONNECT_API_KEY_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_KEY }}
STREAM_SDK_TEST_APP: ${{ secrets.STREAM_SDK_TEST_APP }}
STREAM_SDK_TEST_ACCOUNT_EMAIL: ${{ secrets.STREAM_SDK_TEST_ACCOUNT_EMAIL }}
STREAM_SDK_TEST_ACCOUNT_PASSWORD: ${{ secrets.STREAM_SDK_TEST_ACCOUNT_PASSWORD }}
STREAM_SDK_TEST_ACCOUNT_OTP_SECRET: ${{ secrets.STREAM_SDK_TEST_ACCOUNT_OTP_SECRET }}
RN_DOGFOOD_ANDROID_KEYSTORE: '/home/runner/stream-video-calls-rn.keystore'
RN_DOGFOOD_ANDROID_KEYSTORE_PASSWORD: ${{ secrets.RN_DOGFOOD_ANDROID_KEYSTORE_PASSWORD }}
RN_DOGFOOD_ANDROID_KEYSTORE_ALIAS: ${{ secrets.RN_DOGFOOD_ANDROID_KEYSTORE_ALIAS }}
RN_DOGFOOD_ANDROID_DEPLOY_SERVICE_ACCOUNT: '/home/runner/service-account.json'
FASTLANE_SKIP_UPDATE_CHECK: 1
REACT_NATIVE_DOGFOOD_APP_ENVIRONMENT: 'demo'
GRADLE_OPTS: -Dorg.gradle.jvmargs=-Xmx4g
on:
push:
tags:
- '@stream-io/video-react-native-dogfood-*'
pull_request:
types:
- opened
- synchronize
- reopened
paths:
- '.github/workflows/react-native-workflow.yml'
- 'sample-apps/react-native/dogfood/**'
- 'packages/client/**'
- 'packages/react-bindings/**'
- 'packages/react-native-sdk/**'
- 'packages/noise-cancellation-react-native/**'
- 'packages/video-filters-react-native/**'
- '!**.md'
workflow_dispatch:
inputs:
platform:
description: 'Platform to build and deploy (manual runs only)'
required: true
type: choice
default: both
options:
- ios
- android
- both
concurrency:
group: react-native-workflow-${{ github.ref }}
cancel-in-progress: true
jobs:
code_review:
name: Code Lint, Unit Test and dogfood versioning
timeout-minutes: 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
env:
INSTALL_NODE: true
INSTALL_RN_DEPENDENCIES: true
- name: Lint fastlane
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane rubocop
- name: Test RN SDK (Unit tests only)
run: yarn test:react-native:sdk
build_ios:
name: Build iOS
timeout-minutes: 60
needs: code_review
if: ${{ github.event_name != 'workflow_dispatch' || !github.event.inputs.platform || github.event.inputs.platform == 'ios' || github.event.inputs.platform == 'both' }}
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select XCode version
run: sudo xcode-select --switch /Applications/Xcode_26.1.1.app
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 20
env:
INSTALL_NODE: true
INSTALL_PODS: true
INSTALL_RN_DEPENDENCIES: true
- name: Build
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane build_ios
- name: Upload .ipa
uses: actions/upload-artifact@v4
with:
name: ipa
path: |
**/dogfood/dist/*.ipa
**/dogfood/dist/*.zip
deploy_ios:
name: Deploy iOS
needs: build_ios
timeout-minutes: 60
if: ${{ (github.event_name != 'workflow_dispatch' && github.ref == 'refs/heads/main') || (github.event_name == 'workflow_dispatch' && (!github.event.inputs.platform || github.event.inputs.platform == 'ios' || github.event.inputs.platform == 'both')) }}
runs-on: macos-15
steps:
- uses: actions/checkout@v4
- name: Select XCode version
run: sudo xcode-select --switch /Applications/Xcode_26.1.1.app
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
- name: Download .ipa
uses: actions/download-artifact@v4
with:
name: ipa
- name: Deploy
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane deploy_ios
build_android:
name: Build Android
timeout-minutes: 60
needs: code_review
if: ${{ github.event_name != 'workflow_dispatch' || !github.event.inputs.platform || github.event.inputs.platform == 'android' || github.event.inputs.platform == 'both' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
env:
INSTALL_NODE: true
INSTALL_JAVA: true
INSTALL_RN_DEPENDENCIES: true
- name: Create Google Services JSON File
env:
DATA: ${{ secrets.GOOGLE_SERVICES_JSON_RN_SAMPLES_DEPLOYMENT }}
run: echo $DATA > ~/rn-samples-google-services.json
shell: bash
- name: Create Google Service Account for Play Store Deployment
env:
DATA: ${{ secrets.RN_DOGFOOD_ANDROID_DEPLOY_SERVICE_ACCOUNT_BASE64 }}
run: echo $DATA | base64 --decode | jq > ~/service-account.json
shell: bash
- name: Create Keystore Signing for Play Store Deployment
env:
DATA: ${{ secrets.RN_DOGFOOD_ANDROID_KEYSTORE_BASE64 }}
run: echo $DATA | base64 -d > ~/stream-video-calls-rn.keystore
shell: bash
- name: Build
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane build_android_play_store
- name: Upload .apk
uses: actions/upload-artifact@v4
with:
name: apk
path: '**/dist/*.apk'
- name: Upload .aab
uses: actions/upload-artifact@v4
with:
name: aab
path: '**/dist/*.aab'
deploy_android:
name: Deploy Android
needs: build_android
timeout-minutes: 60
if: ${{ (github.event_name != 'workflow_dispatch' && github.ref == 'refs/heads/main') || (github.event_name == 'workflow_dispatch' && (!github.event.inputs.platform || github.event.inputs.platform == 'android' || github.event.inputs.platform == 'both')) }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/rn-bootstrap
timeout-minutes: 15
- name: Download .aab
uses: actions/download-artifact@v4
with:
name: aab
- name: Create Google Service Account for Play Store Deployment
env:
DATA: ${{ secrets.RN_DOGFOOD_ANDROID_DEPLOY_SERVICE_ACCOUNT_BASE64 }}
run: echo $DATA | base64 --decode | jq > ~/service-account.json
shell: bash
- name: Deploy
working-directory: sample-apps/react-native/dogfood
run: bundle exec fastlane deploy_android_play_store