-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathbitrise.yml
35 lines (31 loc) · 944 Bytes
/
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
format_version: "11"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
workflows:
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
sample:
envs:
- TEST_APP_URL: https://github.com/bitrise-io/git-clone-test.git
- TEST_APP_BRANCH: master
steps:
- script:
inputs:
- content: envman add --key STEP_TMPDIR --value $(mktemp -d -t step-git-cloneXXXXXX)
- change-workdir:
title: Change directory to a temporary directory
inputs:
- path: $STEP_TMPDIR
- path::./:
inputs:
- clone_into_dir: .
- repository_url: $TEST_APP_URL
- branch: $TEST_APP_BRANCH
generate_readme:
steps:
- git::https://github.com/bitrise-steplib/steps-readme-generator.git@main: { }