Created
November 13, 2019 15:05
-
-
Save bbedward/b58be56cb6f422848c252b032a46e2a9 to your computer and use it in GitHub Desktop.
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
prod:android:deploy: | |
stage: deploy | |
tags: | |
- appditto_mac | |
script: | |
- cd android | |
- bundle exec fastlane deploy_android production:true | |
when: manual | |
dependencies: | |
- android:build | |
prod:ios:deploy: | |
stage: deploy | |
tags: | |
- appditto_mac | |
script: | |
- cd ios | |
- bundle exec fastlane deploy_ios | |
when: manual | |
dependencies: | |
- ios:build | |
z:internal:android:deploy: | |
stage: deploy | |
tags: | |
- appditto_mac | |
script: | |
- cd android | |
- bundle exec fastlane deploy_android internal:true | |
when: manual | |
dependencies: | |
- android:build | |
z:tflight:ios:deploy: | |
stage: deploy | |
tags: | |
- appditto_mac | |
script: | |
- cd ios | |
- bundle exec fastlane deploy_ios testflight:true | |
when: manual | |
dependencies: | |
- android:build |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment