mirror of
https://github.com/Kunzisoft/KeePassDX.git
synced 2025-12-04 15:49:33 +01:00
Update fastlane script
This commit is contained in:
@@ -18,19 +18,29 @@ platform :android do
|
||||
end
|
||||
|
||||
desc "Build a new Beta version"
|
||||
lane :build_beta_google_free do
|
||||
lane :build_beta_google_free do |options|
|
||||
gradle(
|
||||
task: "assemble",
|
||||
flavor: "free_google",
|
||||
build_type: "Release"
|
||||
task: "assemble",
|
||||
flavor: "free_google",
|
||||
build_type: "Release",
|
||||
print_command: false,
|
||||
properties: {
|
||||
"android.injected.signing.store.file" => options[:storefile],
|
||||
"android.injected.signing.store.password" => options[:storepass],
|
||||
"android.injected.signing.key.alias" => options[:keyalias],
|
||||
"android.injected.signing.key.password" => options[:keypass],
|
||||
}
|
||||
)
|
||||
end
|
||||
|
||||
|
||||
desc "Deploy a new Beta version to the Google Play"
|
||||
lane :deploy_beta_google_free do
|
||||
lane :deploy_beta_google_free do
|
||||
upload_to_play_store(
|
||||
track: "beta"
|
||||
track: "beta",
|
||||
skip_upload_metadata: "false",
|
||||
skip_upload_images: "true",
|
||||
skip_upload_screenshots: "false",
|
||||
validate_only: "true",
|
||||
)
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user