-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitrise.yml
79 lines (77 loc) · 2.24 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
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
---
format_version: 1.3.1
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
trigger_map:
- push_branch: master
workflow: primary
- push_branch: "*"
workflow: primary
- pull_request_source_branch: "*"
workflow: primary
workflows:
deploy:
steps:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- [email protected]: {}
title: Do anything with Script step
- [email protected]: {}
- [email protected]: {}
- [email protected]: {}
- [email protected]: {}
- [email protected]: {}
primary:
steps:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- [email protected]: {}
- [email protected]: {}
title: Do anything with Script step
inputs:
- content: |-
#!/bin/bash
# fail if any commands fails
set -e
# debug log
set -x
# write your script here
echo "Hello World!"
# or run a script from your repository, like:
# bash ./path/to/script.sh
# not just bash, e.g.:
# ruby ./path/to/script.rb
bash <(curl -s https://codecov.io/bash)
- [email protected]: {}
inputs:
- generate_code_coverage_files: 'yes'
- output_tool: xcodebuild
inputs:
- CODECOV_TOKEN: 0bbc6a8f-49ee-40e6-8481-d4f2f99f8331
- other_options: ''
- [email protected]: {}
- fabric-crashlytics-beta-deploy:
inputs:
- api_key: fca76e678efeaf8682df31226be43eda4cd3d279
- build_secret: fdd093e0d2f3ce9adbae6f4f047ddf06f5f7cca4c997581f3886cc698f129c39
- email_list: [email protected]
inputs:
- notify_email_list: [email protected]
app:
envs:
- opts:
is_expand: false
BITRISE_PROJECT_PATH: myGithub.xcodeproj
- opts:
is_expand: false
BITRISE_SCHEME: myGithub
- opts:
is_expand: true
BITRISE_IPA_PATH: "./myGithub.ipa"
- opts:
is_expand: true
"$BITRISE_DSYM_PATH": "./myGithub.dSYM"