Created
December 17, 2018 22:41
-
-
Save marcosgriselli/40e000e356e346e12faaee686cd5aa50 to your computer and use it in GitHub Desktop.
Bitrise.yml configuration for ViewAnimator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
format_version: '6' | |
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git | |
project_type: fastlane | |
app: | |
envs: | |
- FASTLANE_XCODE_LIST_TIMEOUT: '120' | |
- opts: | |
is_expand: false | |
FASTLANE_WORK_DIR: "." | |
- opts: | |
is_expand: false | |
FASTLANE_LANE: ios test | |
trigger_map: | |
- pull_request_source_branch: "*" | |
workflow: test | |
workflows: | |
test: | |
steps: | |
- [email protected]: | |
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}' | |
- [email protected]: {} | |
- [email protected]: | |
inputs: | |
- lane: "$FASTLANE_LANE" | |
- work_dir: "$FASTLANE_WORK_DIR" | |
- [email protected]: {} | |
patch: | |
steps: | |
- [email protected]: | |
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}' | |
- [email protected]: {} | |
- [email protected]: | |
inputs: | |
- lane: patch | |
- work_dir: "$FASTLANE_WORK_DIR" | |
- [email protected]: {} | |
major: | |
steps: | |
- [email protected]: | |
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}' | |
- [email protected]: {} | |
- [email protected]: | |
inputs: | |
- lane: major | |
- work_dir: "$FASTLANE_WORK_DIR" | |
- [email protected]: {} | |
minor: | |
steps: | |
- [email protected]: | |
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}' | |
- [email protected]: {} | |
- [email protected]: | |
inputs: | |
- lane: minor | |
- work_dir: "$FASTLANE_WORK_DIR" | |
- [email protected]: {} | |
release_current: | |
steps: | |
- [email protected]: | |
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}' | |
- [email protected]: {} | |
- [email protected]: | |
inputs: | |
- lane: release_current | |
- work_dir: "$FASTLANE_WORK_DIR" | |
- [email protected]: {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment