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
workflows: | |
test: | |
steps: | |
- path::./: | |
inputs: | |
- lane: test |
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
inputs: | |
- lane: | |
opts: | |
title: "Fastlane lane" | |
description: | | |
Fastlane lane to run | |
- work_dir: $BITRISE_SOURCE_DIR | |
opts: | |
title: "Working directory" | |
description: |- |
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
#!/bin/bash | |
set -ex | |
fastlane ${lane} |
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
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git |
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
before_run: | |
- pull | |
after_run: | |
- commit_and_push |
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
my-workflow: | |
steps: | |
- path::./: |
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
my-workflow: | |
steps: | |
- git::https://github.com/bitrise-io/steps-fastlane@master: |
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
my-workflow: | |
steps: | |
- fastlane: | |
inputs: | |
- lane: test | |
- work_dir: ./MyProject | |
- xcode-test: {} | |
- xcode-archive: {} |
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
test: | |
steps: | |
- fastlane: | |
inputs: | |
- lane: test | |
- work_dir: ./MyProject |
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
test: | |
steps: | |
- script: | |
inputs: | |
- content: |- | |
#!/bin/bash | |
set -ex | |
fastlane test |