mirror of
https://github.com/lichess-org/mobile.git
synced 2026-05-26 13:50:52 +00:00
47 lines
1.3 KiB
Ruby
47 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 an internal test version to Google Play"
|
|
lane :internal do
|
|
deploy_to_play_store('internal')
|
|
end
|
|
end
|
|
|
|
platform :android do
|
|
desc "Deploy an closed test version to Google Play"
|
|
lane :alpha do
|
|
deploy_to_play_store('alpha')
|
|
end
|
|
end
|
|
|
|
platform :android do
|
|
desc "Upload a production version to Google Play"
|
|
lane :production do
|
|
deploy_to_play_store('production')
|
|
end
|
|
end
|
|
|
|
def deploy_to_play_store(track)
|
|
sh "flutter build appbundle -v --obfuscate --split-debug-info=./build/app/outputs/bundle/release/symbols --dart-define=cronetHttpNoPlay=true --dart-define=LICHESS_HOST=lichess.org --dart-define=LICHESS_WS_HOST=socket.lichess.org --dart-define=LICHESS_WS_SECRET=#{ENV['WS_SECRET']}"
|
|
upload_to_play_store(
|
|
track: track,
|
|
aab: '../build/app/outputs/bundle/release/app-release.aab',
|
|
json_key_data: ENV['PLAY_STORE_CONFIG_JSON'],
|
|
)
|
|
end
|