Created
January 17, 2018 14:23
-
-
Save FranzBusch/75e4f6db0dce61355ca603ed7e309b97 to your computer and use it in GitHub Desktop.
Sixt CI Alpha Job
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
alpha: | |
macos: | |
xcode: "9.2.0" | |
shell: /bin/bash --login -eo pipefail | |
steps: | |
- checkout | |
- restore_cache: | |
keys: | |
- v1-gems-{{ checksum "Gemfile.lock" }} | |
- v1-gems- | |
- run: | |
name: Bundle install | |
command: bundle install | |
environment: | |
BUNDLE_PATH: vendor/bundle | |
- run: | |
name: Build and deploy alpha | |
command: bundle exec fastlane ios alpha refresh_certificates:true use_temporary_keychain:true | |
environment: | |
BUNDLE_PATH: vendor/bundle | |
- save_cache: | |
key: v1-gems-{{ checksum "Gemfile.lock" }} | |
paths: | |
- vendor/bundle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment