-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.yml
More file actions
35 lines (30 loc) · 1.18 KB
/
config.yml
File metadata and controls
35 lines (30 loc) · 1.18 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
# This file contains the config that is used by the Github Workflows.
# This can be used to control which platforms are build, release, and deployed.
# It is preferable to set all values to 'true'.
build:
web_build_flag: false
android_build_flag: true
windows_build_flag: false
# This can be used to determine the environment to build the app in.
# Note: This is used in both build_workflow and release_workflow
# Options: profile, release (debug is by default empty)
environment:
web_environment_flag: "release"
android_environment_flag: "release"
windows_environment_flag: "release"
# This can be used to determine the state of releases to Github.
release:
body: "Release notes here"
draft: true
prerelease: true
generateReleaseNotes: true
# This can be used to manually control whether the app is deployed using the workflows.
deploy:
uat: true
production: false
android_deploy:
android_package_name: "co.za.zanderkotze.multichoice"
android_environment_url: "https://play.google.com/console/u/0/developers/8783535225973670504/app/4976133683768209199/tracks/internal-testing"
android_track: "internal"
android_release_name: "v1.0.0"
android_deploy_status: "draft"