-
Notifications
You must be signed in to change notification settings - Fork 33
51 lines (45 loc) · 1.14 KB
/
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
name: Build
on: workflow_dispatch
jobs:
test:
name: Test
uses: ./.github/workflows/test.yml
secrets: inherit
with:
skipClientVersionBumpTest: true
build-android-staging:
name: Android Staging
needs: test
concurrency: build-android-production
uses: ./.github/workflows/build-android.yml
with:
environment: staging
branch: ${{ github.ref_name }}
secrets: inherit
build-android-production:
name: Android Production
needs: test
concurrency: build-android-staging
uses: ./.github/workflows/build-android.yml
with:
environment: production
branch: ${{ github.ref_name }}
secrets: inherit
build-ios-staging:
name: iOS Staging
needs: test
concurrency: build-ios-staging
uses: ./.github/workflows/build-ios.yml
with:
environment: staging
branch: ${{ github.ref_name }}
secrets: inherit
build-ios-production:
name: iOS Production
needs: test
concurrency: build-ios-production
uses: ./.github/workflows/build-ios.yml
with:
environment: production
branch: ${{ github.ref_name }}
secrets: inherit