-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (43 loc) · 1.32 KB
/
default-workflow.yaml
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
name: default-workflow
on:
push:
branches:
- main
jobs:
test:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Prepare runner
uses: ./.github/actions/prepare-ubuntu-runner
- name: Run virtual machine tests
run: bundle exec fastlane run_vm_tests
build_android:
name: Build Android debug
runs-on: ubuntu-latest
needs: test
steps:
- uses: actions/checkout@v4
- name: Prepare runner
uses: ./.github/actions/prepare-ubuntu-runner
- name: Build debug
uses: ./.github/actions/build-android
with:
type: debug
google_services_json: ${{ secrets.GOOGLE_SERVICES_JSON }}
env_file: ${{ secrets.ENV_FILE }}
build_ios:
name: Build iOS debug
runs-on: macos-latest
needs: test
steps:
- uses: actions/checkout@v4
- name: Prepare runner
uses: ./.github/actions/prepare-macos-runner
- name: Decode and save .env file
run: echo "${{ secrets.ENV_FILE }}" | base64 -d > .env
- name: Decode and save GoogleServices-Info.plist
run: echo "${{ secrets.GOOGLESERVICE_INFO_PLIST }}" | base64 -d > ./ios/Runner/GoogleService-Info.plist
- name: Build debug
run: bundle exec fastlane ios build_debug