forked from bitrise-steplib/steps-fastlane
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstep.yml
More file actions
62 lines (57 loc) · 1.62 KB
/
step.yml
File metadata and controls
62 lines (57 loc) · 1.62 KB
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
title: "fastlane"
summary: |-
Runs your fastlane lane.
description: |-
Runs your fastlane lane.
If `Gemfile` exists in the `work_dir` directory, fastlane will be used by
`bundle install` && `bundle exec`.
Otherwise the system installed `fastlane` version will be used.
website: https://github.com/bitrise-io/steps-fastlane
source_code_url: https://github.com/bitrise-io/steps-fastlane
support_url: https://github.com/bitrise-io/steps-fastlane/issues
host_os_tags:
- "osx-10.10"
project_type_tags:
- ios
- macos
- android
type_tags:
- build
- xcode
- fastlane
deps:
brew:
- name: go
apt_get:
- name: golang
bin_name: go
toolkit:
go:
package_name: github.com/bitrise-io/steps-fastlane
inputs:
- lane:
opts:
title: "fastlane lane"
description: |
fastlane lane to run
$ fastlane [lane]
is_required: true
- work_dir: $BITRISE_SOURCE_DIR
opts:
title: "Working directory"
description: |-
Use this option if the fastlane directory is not in your repository's root.
Working directory should be the parent directory of your Fastfile's directory.
Example:
* If Fastfile path: `./here/is/my/fastlane/Fastfile`
* Then Fastfile's directory: `./here/is/my/fastlane`
* So Working Directory should be: `./here/is/my`
- update_fastlane: "true"
opts:
title: "Should update fastlane gem before run?"
description: |-
Should update fastlane gem before run?
*This option will be skipped if you have a `Gemfile` in the `work_dir` directory.*
value_options:
- "true"
- "false"