mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
67 lines
1.5 KiB
Ruby
67 lines
1.5 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)
|
|
|
|
|
|
lane :playstore do
|
|
gradle(
|
|
task: 'assemble',
|
|
build_type: 'Release'
|
|
)
|
|
end
|
|
|
|
platform :android do
|
|
|
|
desc "Upload app to production"
|
|
lane :production do
|
|
begin
|
|
# gradle(
|
|
# task: 'assemble',
|
|
# build_type: 'Release'
|
|
#)
|
|
upload_to_play_store(
|
|
track: 'production',
|
|
aab: '../build/app/outputs/bundle/release/app-release.aab',
|
|
skip_upload_metadata: false,
|
|
skip_upload_images: false,
|
|
skip_upload_screenshots: true,
|
|
release_status: "completed", #"draft",
|
|
)
|
|
end
|
|
end
|
|
|
|
|
|
desc "Upload closed alpha app and update store entry"
|
|
lane :update_alpha do
|
|
begin
|
|
upload_to_play_store(
|
|
track: 'alpha',
|
|
aab: '../build/app/outputs/bundle/release/app-release.aab',
|
|
skip_upload_metadata: false,
|
|
skip_upload_images: true,
|
|
skip_upload_screenshots: true,
|
|
release_status: "completed", #"draft",
|
|
)
|
|
end
|
|
end
|
|
|
|
desc "Deploy a new version to the Google Play"
|
|
lane :deploy do
|
|
gradle(task: "clean assembleRelease")
|
|
upload_to_play_store
|
|
end
|
|
end
|