-
Notifications
You must be signed in to change notification settings - Fork 1
/
step.yml
70 lines (57 loc) · 1.75 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
#
title: |-
AppCenter dSYM upload
summary: |
Upload dSYM to Microsoft AppCenter
description: |
This step uploads dSYM to AppCenter using official CLI.
The step is relevant only for iOS projects (including Xamarin.iOS).
By default $BITRISE_DSYM_PATH env used to lookup for dSYM file.
If an archive step used as part of the workflow then a default value can be used
for `dsym_path` variable
It is important to [obtain API Token from AppCenter](https://appcenter.ms/settings/apitokens)
to use this step.
website: https://github.com/alexshikov/bitrise-step-appcenter-dsym-upload
source_code_url: https://github.com/alexshikov/bitrise-step-appcenter-dsym-upload
support_url: https://github.com/alexshikov/bitrise-step-appcenter-dsym-upload/issues
host_os_tags:
- osx-10.10
- ubuntu-16.04
type_tags:
- deploy
project_type_tags:
- ios
is_requires_admin_user: true
is_always_run: false
is_skippable: false
run_if: ""
deps:
brew:
- name: node
apt_get:
- name: node
toolkit:
bash:
entry_file: step.sh
inputs:
- dsym_path: $BITRISE_DSYM_PATH
opts:
title: dSYM path
description: |
A path to dSYM file to upload.
is_required: true
- app_id: $BITRISE_APPCENTER_APP_ID
opts:
title: Application Identifier
summary: AppCenter application identifier (Owner + App Name).
description: |
AppCenter Application Identifier is a combination of your Organization/Owner Name
and an Application Name.
For example: "MyOrganization/MyApplication"
is_required: true
- api_token: $BITRISE_APPCENTER_API_TOKEN
opts:
title: AppCenter API Token
description: |
[Obtain API Token from AppCenter](https://appcenter.ms/settings/apitokens)
is_required: true