Skip to content

Commit

Permalink
cleanup Fastfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sduduzog committed Sep 22, 2021
1 parent a8dd0da commit 8475555
Showing 1 changed file with 11 additions and 25 deletions.
36 changes: 11 additions & 25 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,3 @@
# 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
Expand All @@ -23,16 +8,17 @@ platform :android do

desc "Submit a new Beta Build to Crashlytics Beta"
lane :beta do
gradle(task: "clean assembleRelease")
crashlytics

# sh "your_script.sh"
# You can also use other beta testing services here
ensure_git_status_clean(
show_uncommitted_changes: true
)
ensure_git_branch(
branch: '^release/.*$'
)
gradle(task: "clean bundleRelease")
supply(
track: 'beta',
rollout: '1'
)
end

desc "Deploy a new version to the Google Play"
lane :deploy do
gradle(task: "clean assembleRelease")
upload_to_play_store
end
end

0 comments on commit 8475555

Please sign in to comment.