-
Notifications
You must be signed in to change notification settings - Fork 6
/
bitrise.yml
executable file
·53 lines (49 loc) · 1.46 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
format_version: "11"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
workflows:
sample:
steps:
- script:
title: Clean _tmp dir
inputs:
- content: |-
#!/usr/bin/env bash
set -e
rm -rf ./_tmp
- change-workdir:
title: Switch working dir to _tmp
inputs:
- path: ./_tmp
- is_create_path: true
- git::https://github.com/bitrise-steplib/bitrise-step-simple-git-clone.git@master:
title: Clone sample app
inputs:
- repository_url: https://github.com/bitrise-io/sample-artifacts.git
- clone_into_dir: .
- branch: master
- path::./:
title: Step Test - iOS archive
is_always_run: true
inputs:
- export_method: development
- archive_path: ./archives/ios.xcarchive
- path::./:
title: Step Test - iOS app store archive
is_always_run: true
inputs:
- export_method: app-store
- archive_path: ./archives/ios.xcarchive
check:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git: { }
e2e:
steps:
- git::https://github.com/bitrise-steplib/steps-check.git:
inputs:
- workflow: e2e
generate_readme:
steps:
- git::https://github.com/bitrise-steplib/steps-readme-generator.git@main:
inputs:
- contrib_section: docs/contribution.md
- example_section: docs/examples.md