-
Notifications
You must be signed in to change notification settings - Fork 6
/
bitrise.yml
48 lines (43 loc) · 1.32 KB
/
bitrise.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
format_version: 5
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
app:
envs:
- BITRISE_STEP_VERSION: 2.1.1
- BITRISE_STEP_GIT_CLONE_URL: https://github.com/bitrise-steplib/steps-testfairy-deploy.git
- MY_STEPLIB_REPO_FORK_GIT_URL: $MY_STEPLIB_REPO_FORK_GIT_URL
# define these in your .bitrise.secrets.yml
- api_key:
- BITRISE_IPA_PATH:
- BITRISE_DSYM_PATH:
workflows:
test:
before_run:
- audit-this-step
steps:
- path::./:
inputs:
- notify: "off"
- auto_update: "off"
- max_test_duration: "10m"
- video_recording: "off"
- comment: ""
- tester_groups: ""
- script:
inputs:
- content: |-
#!/bin/bash
if [[ "$TESTFAIRY_PUBLIC_INSTALL_PAGE_URL" == "" ]] ; then
echo "No TESTFAIRY_PUBLIC_INSTALL_PAGE_URL env available!!"
exit 1
fi
echo "TESTFAIRY_PUBLIC_INSTALL_PAGE_URL: ${TESTFAIRY_PUBLIC_INSTALL_PAGE_URL}"
# ----------------------------------------------------------------
# --- workflows to Share this step into a Step Library
audit-this-step:
steps:
- script:
inputs:
- content: |-
#!/bin/bash
set -ex
stepman audit --step-yml ./step.yml