-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (47 loc) · 1.19 KB
/
runner.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
name: Builds
on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"
- "*-workflow"
jobs:
lint:
uses: ./.github/workflows/lint.yml
build_android:
needs: [lint]
uses: ./.github/workflows/build_android.yml
build_ios:
needs: [lint]
uses: ./.github/workflows/build_ios.yml
build_linux_arm:
needs: [lint]
uses: ./.github/workflows/build_linux_arm.yml
build_linux:
needs: [lint]
uses: ./.github/workflows/build_linux.yml
build_macos:
needs: [lint]
uses: ./.github/workflows/build_macos.yml
secrets:
APPLE_CERT_BASE64: ${{ secrets.APPLE_CERT_BASE64 }}
APPLE_CERT_PASSWORD: ${{ secrets.APPLE_CERT_PASSWORD }}
APPLE_DEV_PASSWORD: ${{ secrets.APPLE_DEV_PASSWORD }}
APPLE_DEV_ID: ${{ secrets.APPLE_DEV_ID }}
APPLE_DEV_TEAM_ID: ${{ secrets.APPLE_DEV_TEAM_ID }}
APPLE_DEV_APP_ID: ${{ secrets.APPLE_DEV_APP_ID }}
build_windows:
needs: [lint]
uses: ./.github/workflows/build_windows.yml
bundle:
needs:
[
build_android,
build_ios,
build_linux_arm,
build_linux,
build_macos,
build_windows,
]
uses: ./.github/workflows/bundle.yml