-
Notifications
You must be signed in to change notification settings - Fork 33
48 lines (48 loc) · 1.37 KB
/
build_ios.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
name: Build iOS
on:
workflow_dispatch:
inputs:
build_official:
description: 'Build official app'
required: true
type: boolean
build_naofood:
description: 'Build Naofood app'
required: true
type: boolean
build_kooglof:
description: 'Build Kooglof app'
required: true
type: boolean
jobs:
default:
if: ${{ inputs.build_official }}
name: Build default app
uses: ./.github/workflows/fastlane_ios.yml
with:
google_service_info_plist_base64: GOOGLE_SERVICE_INFO_PLIST_BASE64
secrets: inherit
naofood:
if: ${{ inputs.build_naofood }}
name: Build Naofood app
uses: ./.github/workflows/fastlane_ios.yml
with:
instance: naofood
instance_url: https://naofood.coopcycle.org
app_name: Naofood
app_id: org.coopcycle.Naofood
primary_color: "#f8781f"
google_service_info_plist_base64: GOOGLE_SERVICE_INFO_PLIST_BASE64_NAOFOOD
secrets: inherit
kooglof:
if: ${{ inputs.build_kooglof }}
name: Build Kooglof app
uses: ./.github/workflows/fastlane_ios.yml
with:
instance: kooglof
instance_url: https://kooglof.coopcycle.org
app_name: Kooglof
app_id: org.coopcycle.Kooglof
primary_color: "#b4434e"
google_service_info_plist_base64: GOOGLE_SERVICE_INFO_PLIST_BASE64_KOOGLOF
secrets: inherit