jamfish/fastlane/Fastfile
Karim Abou Zeid 43f544a43b Add fastlane
2018-05-18 21:34:32 +02:00

49 lines
1.3 KiB
Ruby

# 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