Created
October 14, 2017 22:54
-
-
Save joshstrange/b6948d95597a5e9e67623a913baebb50 to your computer and use it in GitHub Desktop.
Gitlab CI Config for Fastlane
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
stages: | |
- beta | |
variables: | |
LC_ALL: "en_US.UTF-8" | |
LANG: "en_US.UTF-8" | |
test_flight_build: | |
dependencies: [] | |
stage: beta | |
script: | |
- fastlane ios beta | |
tags: | |
- ios | |
only: | |
- alpha | |
play_alpha_build: | |
dependencies: [] | |
stage: beta | |
script: | |
- fastlane android alpha | |
tags: | |
- ios | |
only: | |
- alpha |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment