Skip to content

Commit

Permalink
try fastlane fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zaneschepke committed Jul 28, 2024
1 parent 086b48c commit 52322ac
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,25 +4,25 @@ platform :android do

desc 'Deploy a new internal version to the Google Play Store'
lane :internal do
gradle(task: "clean bundleGeneralRelease")
gradle(task: "clean :app:bundleGeneralRelease")
upload_to_play_store(track: 'internal', skip_upload_apk: true)
end

desc "Deploy an alpha version to the Google Play"
lane :alpha do
gradle(task: "clean bundleGeneralRelease")
gradle(task: "clean :app:bundleGeneralRelease")
upload_to_play_store(track: 'alpha', skip_upload_apk: true)
end

desc "Deploy a beta version to the Google Play"
lane :beta do
gradle(task: "clean bundleGeneralRelease")
gradle(task: "clean :app:bundleGeneralRelease")
upload_to_play_store(track: 'beta', skip_upload_apk: true)
end

desc "Deploy a new version to the Google Play"
lane :production do
gradle(task: "clean bundleGeneralRelease")
gradle(task: "clean :app:bundleGeneralRelease")
upload_to_play_store(skip_upload_apk: true)
end

Expand Down

0 comments on commit 52322ac

Please sign in to comment.