-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstep.yml
107 lines (97 loc) · 3.96 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
#
# 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: |-
Autify Upload
summary: |
Upload a build file to Autify for Mobile.
description: |
[Autify for Mobile](https://autify.com/mobile) is a test automation platform for your native app.
This step allows you to upload your app built in the previous steps to Autify.
You need to build your app first by `Android Build`, `Xcode build for simulator`, etc.
and refer the target build path (*.apk or *.app) at `Build path to test` input.
website: https://github.com/autifyhq/bitrise-step-autify-upload
source_code_url: https://github.com/autifyhq/bitrise-step-autify-upload
support_url: https://github.com/autifyhq/bitrise-step-autify-upload/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
- react-native
- cordova
- ionic
- flutter
# 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:
- test
# These properties define whether a Step is run in a given Workflow or not.
# You can find more information about this in the documentation here:
# https://devcenter.bitrise.io/en/steps-and-workflows/developing-your-own-bitrise-step/developing-a-new-step.html#setting-conditions-for-running-the-step
#
# is_always_run: false
# is_skippable: false
# run_if: ""
# Use the `deps` property to declare dependencies that you can fetch from an OS dependency manager.
# You can find more information about this in the documentation here:
# https://devcenter.bitrise.io/en/steps-and-workflows/developing-your-own-bitrise-step/developing-a-new-step.html#submodules-and-step-dependencies
#
# deps:
# brew:
# - name: cmake
# apt_get:
# - name: cmake
toolkit:
bash:
entry_file: step.sh
inputs:
- access_token:
opts:
title: Access token of Autify for Mobile
summary: Personal Access Token of Autify for Mobile
is_expand: true
is_required: true
is_sensitive: true
- workspace_id:
opts:
title: Workspace ID to upload
summary: Your workspace ID of Autify for Mobile to upload the build
is_expand: true
is_required: true
- build_path:
opts:
title: Build path to upload
summary: |-
The file location of your build file i.e. /path/to/ios.app or /path/to/android.apk.
Typically, it's `$BITRISE_APP_DIR_PATH` for `Xcode build for simulator` step or `$BITRISE_APK_PATH` for `Android build` step.
is_expand: true
is_required: true
- autify_path: autify
opts:
title: A path to Autify CLI
is_expand: true
- autify_cli_installer_url: https://autify-cli-assets.s3.amazonaws.com/autify-cli/channels/stable/install-cicd.bash
opts:
title: Autify CLI installer URL
is_expand: true
outputs:
- AUTIFY_BUILD_ID:
opts:
title: "Uploaded build id on Autify for Mobile"
- AUTIFY_UPLOAD_EXIT_CODE:
opts:
title: "Exit code of the step"