-
Notifications
You must be signed in to change notification settings - Fork 33
88 lines (88 loc) · 2.7 KB
/
build_android.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
name: Build Android
on:
workflow_dispatch:
inputs:
build_official:
description: 'Build official app'
required: true
type: boolean
build_coursiers_stephanois:
description: 'Build Coursiers Stéphanois app'
required: true
type: boolean
build_naofood:
description: 'Build Naofood app'
required: true
type: boolean
build_zampate:
description: 'Build Zampate 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_android.yml
secrets: inherit
with:
google_play_track: production
naofood:
if: ${{ inputs.build_naofood }}
name: Build Naofood app
uses: ./.github/workflows/fastlane_android.yml
with:
instance: naofood
instance_url: https://naofood.coopcycle.org
app_name: Naofood
primary_color: "#f8781f"
package_name: fr.naofood.client
keystore_key_alias: naofood
keystore_key_password_secret: SIGNING_KEY_PASSWORD_NAOFOOD
google_play_track: production
secrets: inherit
zampate:
if: ${{ inputs.build_zampate }}
name: Build Zampate app
uses: ./.github/workflows/fastlane_android.yml
with:
instance: zampate
instance_url: https://zampate.coopcycle.org
app_name: Zampate
primary_color: "#d02e26"
package_name: fr.coopcycle.zampate
keystore_key_alias: instance
keystore_key_password_secret: SIGNING_KEY_PASSWORD_INSTANCE
google_play_track: beta
secrets: inherit
coursiers_stephanois:
if: ${{ inputs.build_coursiers_stephanois }}
name: Build Les Coursiers Stéphanois app
uses: ./.github/workflows/fastlane_android.yml
with:
instance: coursiers_stephanois
instance_url: https://coursiers-stephanois.coopcycle.org
app_name: Les Coursiers Stéphanois
primary_color: "#85b544"
package_name: fr.coopcycle.coursiers_stephanois
keystore_key_alias: instance
keystore_key_password_secret: SIGNING_KEY_PASSWORD_INSTANCE
google_play_track: beta
secrets: inherit
kooglof:
if: ${{ inputs.build_kooglof }}
name: Build Kooglof app
uses: ./.github/workflows/fastlane_android.yml
with:
instance: kooglof
instance_url: https://kooglof.coopcycle.org
app_name: Kooglof
primary_color: "#b4434e"
package_name: fr.coopcycle.kooglof
keystore_key_alias: instance
keystore_key_password_secret: SIGNING_KEY_PASSWORD_INSTANCE
google_play_track: production
secrets: inherit