-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathstep.yml
129 lines (120 loc) · 3.93 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
#
# 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: |-
Upload application to Kobiton
summary: |
Uploads your application to the Kobiton Platform for seamless interactive app testing
description: |
This step will take an .apk or .ipa file and upload it to the Kobiton App Repository. You can find your API key at [Kobiton](https://portal.kobiton.com/settings/keys)
website: https://kobiton.com
source_code_url: https://github.com/kobiton/bitrise-step-kobiton-upload-apps-repo
support_url: https://github.com/kobiton/bitrise-step-kobiton-upload-apps-repo/issues
# If this step should be available only for certain project types
# just uncomment this `project_type_tags` section and include all the
# project types supported by the step. If the step can be used for all
# project types then you can just remove this section.
# If no `project_type_tags` specified (or specified as an empty array)
# that means the step can be used for any project type.
# You can find more information about project type tags in the Step Development Guideline:
# https://github.com/bitrise-io/bitrise/blob/master/_docs/step-development-guideline.md
#
# project_type_tags:
# - ios
# - android
# - macos
# - xamarin
# - react-native
# - 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:
- deploy
is_always_run: false
is_skippable: false
run_if: ""
deps:
brew:
- name: curl
- name: ack
apt_get:
- name: curl
- name: ack
toolkit:
bash:
entry_file: step.sh
inputs:
- kobiton_app_name: $BITRISE_APP_TITLE
opts:
title: "App Name"
summary: Title of the app being built
is_expand: true
is_required: true
- kobiton_app_path: $BITRISE_SIGNED_APK_PATH
opts:
title: "App Path"
summary: Path to the app .apk or .ipa file
is_expand: true
is_required: true
- kobiton_app_id:
opts:
title: "App ID"
summary: App ID in Kobiton - use this in case you want to upload new version of an existing app in Kobiton
is_expand: true
is_required: false
- kobiton_app_type: "apk"
opts:
title: "App Type"
summary: Select ipa for iOS app or apk for Android app
is_expand: true
is_required: true
value_options:
- "apk"
- "ipa"
- kobiton_app_access: "public"
opts:
title: "App Privacy"
summary: You can either to make this app private or available for everyone in the organization
value_options:
- "public"
- "private"
- kobiton_username:
opts:
title: "Kobiton Username"
summary: The user to upload to Kobiton
is_expand: true
is_required: true
is_sensitive: true
- kobiton_api_key:
opts:
title: "Kobiton API Key/Secret"
summary: API key to access Kobiton API
is_expand: true
is_required: true
is_sensitive: true
outputs:
- KOBITON_APP_ID:
opts:
title: "App ID"
summary: Kobiton App ID
description: |
The App ID that the app has been uploaded to Kobiton Repo.
- KOBITON_UPLOAD_URL:
opts:
title: "Upload URL"
summary: Amazon S3 Upload URL
description: |
The URL the app has been uploaded to.
- KOBITON_APP_PATH:
opts:
title: "App Path"
summary: Path to the app binary on Kobiton
description: |
Path to the app binary on Kobiton