-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (32 loc) · 935 Bytes
/
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
name: Build
on:
workflow_dispatch:
merge_group:
push:
branches:
- main
- dependencies
pull_request:
branches:
- main
- dependencies
jobs:
ios-build-only:
name: Build iOS app
uses: ./.github/workflows/build-shared-ios.yml
with:
STRICT: "false"
secrets:
MAPBOX_DOWNLOADS_TOKEN: ${{ secrets.MAPBOX_DOWNLOADS_TOKEN }}
APPLE_P12_BASE64: ${{ secrets.APPLE_P12_BASE64 }}
APPLE_MOBILE_PROVISION_BASE64: ${{ secrets.APPLE_MOBILE_PROVISION_BASE64 }}
APPLE_CERTIFICATE_PASSWORD: ${{ secrets.APPLE_CERTIFICATE_PASSWORD }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
android-build-only:
name: Build Android app
uses: ./.github/workflows/build-shared-android.yml
with:
STRICT: "false"
secrets:
MAPBOX_DOWNLOADS_TOKEN: ${{ secrets.MAPBOX_DOWNLOADS_TOKEN }}
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}