Add fastlane

This commit is contained in:
Karim Abou Zeid 2018-05-18 21:34:32 +02:00
commit 43f544a43b
9 changed files with 299 additions and 0 deletions

49
fastlane/Fastfile Normal file
View file

@ -0,0 +1,49 @@
# This file contains the fastlane.tools configuration
# You can find the documentation at https://docs.fastlane.tools
#
# For a list of all available actions, check out
#
# https://docs.fastlane.tools/actions
#
# For a list of all available plugins, check out
#
# https://docs.fastlane.tools/plugins/available-plugins
#
# Uncomment the line if you want fastlane to automatically update itself
# update_fastlane
default_platform(:android)
platform :android do
desc "Deploy a new beta version to the Google Play"
lane :beta do
gradle(task: "clean assembleRelease")
upload_to_play_store(track: 'beta')
end
desc "Deploy a new staged release version to the Google Play"
lane :deploy_staged do
gradle(task: "clean assembleRelease")
upload_to_play_store(track: 'rollout', rollout: '0.1')
end
desc "Deploy a new version to the Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")
upload_to_play_store
end
desc "Generates a changelog from git commits and puts it in the clipboard"
lane :changelog do
changelog = changelog_from_git_commits(merge_commit_filtering: 'exclude_merges')
clipboard(value: changelog)
end
desc "Creates and pushes a release tag"
lane :tag do
tag = prompt(text: "Version name: ")
add_git_tag(tag: tag)
push_git_tags(tag: tag)
end
end