Skip to content

Instantly share code, notes, and snippets.

@ValeryPonomarenko
Last active October 21, 2018 19:27
Show Gist options
  • Save ValeryPonomarenko/55b605a270443359ac25ffd61d5ba8ab to your computer and use it in GitHub Desktop.
Save ValeryPonomarenko/55b605a270443359ac25ffd61d5ba8ab to your computer and use it in GitHub Desktop.
Android CicleCI
deploy-internal:
<<: *defaults
steps:
- checkout
- restore_cache:
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
- run:
name: Install fastlane
command: bundle install
- run:
name: Store the google play key
command: echo $GOOGLE_PLAY_KEY > gplay_key.json
- run:
name: Init fastlane supply
command: bundle exec fastlane supply init
- run:
name: Download ci's data
command: ./ci/download_ci_data.sh
- run:
name: Deploy the app to the internal track
command: bundle exec fastlane deploy_internal
- save_cache:
paths:
- ~/.gradle
key: jars-{{ checksum "build.gradle" }}-{{ checksum "app/build.gradle" }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment