Skip to content

Instantly share code, notes, and snippets.

@marcosgriselli
Created December 17, 2018 22:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcosgriselli/40e000e356e346e12faaee686cd5aa50 to your computer and use it in GitHub Desktop.
Save marcosgriselli/40e000e356e346e12faaee686cd5aa50 to your computer and use it in GitHub Desktop.
Bitrise.yml configuration for ViewAnimator
---
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:
- activate-ssh-key@4.0.3:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.13: {}
- fastlane@2.3.12:
inputs:
- lane: "$FASTLANE_LANE"
- work_dir: "$FASTLANE_WORK_DIR"
- deploy-to-bitrise-io@1.3.18: {}
patch:
steps:
- activate-ssh-key@4.0.3:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.13: {}
- fastlane@2.3.12:
inputs:
- lane: patch
- work_dir: "$FASTLANE_WORK_DIR"
- deploy-to-bitrise-io@1.3.18: {}
major:
steps:
- activate-ssh-key@4.0.3:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.13: {}
- fastlane@2.3.12:
inputs:
- lane: major
- work_dir: "$FASTLANE_WORK_DIR"
- deploy-to-bitrise-io@1.3.18: {}
minor:
steps:
- activate-ssh-key@4.0.3:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.13: {}
- fastlane@2.3.12:
inputs:
- lane: minor
- work_dir: "$FASTLANE_WORK_DIR"
- deploy-to-bitrise-io@1.3.18: {}
release_current:
steps:
- activate-ssh-key@4.0.3:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.13: {}
- fastlane@2.3.12:
inputs:
- lane: release_current
- work_dir: "$FASTLANE_WORK_DIR"
- deploy-to-bitrise-io@1.3.18: {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment