-
Notifications
You must be signed in to change notification settings - Fork 0
/
step.yml
98 lines (91 loc) · 3.04 KB
/
step.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
89
90
91
92
93
94
95
96
97
98
#
# A couple of useful guides & docs:
#
# - Main Bitrise CLI docs: https://github.com/bitrise-io/bitrise/tree/master/_docs
# - Step Development Guideline: https://github.com/bitrise-io/bitrise/blob/master/_docs/step-development-guideline.md
# - Bitrise.yml format spec: https://github.com/bitrise-io/bitrise/blob/master/_docs/bitrise-yml-format-spec.md
# - Bitrise docs: http://devcenter.bitrise.io/
# - Bitrise CLI guides: http://devcenter.bitrise.io/bitrise-cli/
title: |-
modify-cordova-config
summary: |
Update some of the cordova config.xml tags
description: |
Allows you to modify the some of the cordova config.xml tags
website: https://github.com/crowdcomms/bitrise-step-modify-cordova-config
source_code_url: https://github.com/crowdcomms/bitrise-step-modify-cordova-config
support_url: https://github.com/crowdcomms/bitrise-step-modify-cordova-config/issues
host_os_tags:
- osx-10.10
- ubuntu-16.04
project_type_tags:
- cordova
- ionic
# Type tags are used for categorizing steps, for easier step discovery in Step Libraries.
# You can find more information about type tags in the Step Development Guideline:
# https://github.com/bitrise-io/bitrise/blob/master/_docs/step-development-guideline.md
type_tags:
- build
is_requires_admin_user: true
is_always_run: false
is_skippable: false
run_if: ""
deps:
brew:
- name: git
- name: wget
apt_get:
- name: git
- name: wget
toolkit:
bash:
entry_file: step.sh
inputs:
- name: $CORDOVA_NAME
opts:
title: App name
summary: This is the name of the app as you would like it to appear in the store
is_expand: true
is_required: false
- id: $CORDOVA_ID
opts:
title: Package identifier
summary: This is the bundle id (eg com.crowdcomms.myapp)
is_expand: true
is_required: false
- version: $CORDOVA_VERSION
opts:
title: Store version number
summary: The new store version number (eg 1.0.0)
is_expand: true
is_required: false
- android_version_code: $CORDOVA_ANDROID_VERSION_CODE
opts:
title: Android version code
summary: This is the android version (eg 19)
is_expand: true
is_required: false
- ios_bundle_version: $CORDOVA_IOS_BUNDLE_VERSION
opts:
title: IOS build number
summary: The ios build number (must be incremented for each subsequent build)
is_expand: true
is_required: false
- path_to_config: $PATH_TO_CONFIG
opts:
title: Cordova config.xml file location
summary: Define the location of the config.xml files. Defaults to `./config.xml`
is_expand: true
is_required: false
# - ios_bundle_identifier: $CORDOVA_IOS_BUNDLE_IDENTIFIER
# opts:
# title: iOS bundle identifier
# summary: Modify the attribute `ios-CFBundleIdentifier` in the config.xml file
# is_expand: true
# is_required: false
# - android_package_name: $CORDOVA_ANDROID_PACKAGE_NAME
# opts:
# title: Android package name
# summary: Modify the attribute `android-packageName` in the config.xml file
# is_expand: true
# is_required: false