forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (42 loc) · 1.41 KB
/
remote-build-ios.yml
File metadata and controls
48 lines (42 loc) · 1.41 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
name: Remote Build iOS
on:
workflow_dispatch:
push:
branches-ignore: [staging, production]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build:
runs-on: ${{ github.repository_owner == 'Expensify' && 'macos-15-xlarge' || 'macos-15' }}
strategy:
fail-fast: false
matrix:
include:
- scheme: 'New Expensify Dev'
configuration: 'DebugDevelopment'
is_hybrid_build: false
- scheme: 'Expensify Dev'
configuration: 'Debug'
is_hybrid_build: true
steps:
- name: Checkout
# v4
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608
with:
submodules: ${{ matrix.is_hybrid_build || false }}
token: ${{ secrets.OS_BOTIFY_TOKEN }}
- name: Setup Node
uses: ./.github/actions/composite/setupNode
with:
IS_HYBRID_BUILD: ${{ matrix.is_hybrid_build && 'true' || 'false' }}
- name: RNEF Remote Build - iOS
uses: callstackincubator/ios@f8aeffabe13be32e9aa69b86726de67bff5a694e
env:
IS_HYBRID_APP: ${{ matrix.is_hybrid_build }}
with:
destination: simulator
scheme: ${{ matrix.scheme }}
configuration: ${{ matrix.configuration }}
github-token: ${{ github.token }}
comment-bot: false