Skip to content

Instantly share code, notes, and snippets.

@FranzBusch
Created January 17, 2018 14:23
Show Gist options
  • Save FranzBusch/75e4f6db0dce61355ca603ed7e309b97 to your computer and use it in GitHub Desktop.
Save FranzBusch/75e4f6db0dce61355ca603ed7e309b97 to your computer and use it in GitHub Desktop.
Sixt CI Alpha Job
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