forked from bitrise-steplib/bitrise-step-flutter-build
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitrise.yml
43 lines (38 loc) · 1.08 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
format_version: "11"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
app:
envs:
- ORIGIN_SOURCE_DIR: $BITRISE_SOURCE_DIR
workflows:
sample:
envs:
- SAMPLE_APP_URL: https://github.com/bitrise-samples/sample-apps-flutter-ios-android.git
steps:
- script:
inputs:
- content: |-
#!/bin/env bash
set -ex
rm -rf ./_tmp
- git::https://github.com/bitrise-steplib/bitrise-step-simple-git-clone.git:
inputs:
- repository_url: $SAMPLE_APP_URL
- branch: master
- clone_into_dir: ./_tmp
- path::./:
inputs:
- project_location: ./_tmp
- is_debug_mode: "true"
- platform: both
- android_output_type: appbundle
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: { }