"Fossies" - the Fresh Open Source Software Archive

Member "jitsi-meet-7555/android/fastlane/Fastfile" (28 Sep 2023, 1078 Bytes) of package /linux/misc/jitsi-meet-7555.tar.gz:


As a special service "Fossies" has tried to format the requested text file into HTML format (style: standard) with prefixed line numbers. Alternatively you can here view or download the uninterpreted source code file.

    1 ENV["FASTLANE_SKIP_UPDATE_CHECK"] = "1"
    2 opt_out_usage
    3 
    4 default_platform(:android)
    5 
    6 platform :android do
    7     desc "Deploy a new version to Goolge Play (Closed Beta)"
    8     lane :deploy do
    9         # Cleanup
   10         gradle(task: "clean")
   11 
   12         # Build and sign the app
   13         gradle(
   14             task: "assemble",
   15             build_type: "Release",
   16             print_command: false,
   17             properties: {
   18                 "android.injected.signing.store.file" => ENV["JITSI_KEYSTORE"],
   19                 "android.injected.signing.store.password" => ENV["JITSI_KEYSTORE_PASSWORD"],
   20                 "android.injected.signing.key.alias" => ENV["JITSI_KEY_ALIAS"],
   21                 "android.injected.signing.key.password" => ENV["JITSI_KEY_PASSWORD"],
   22             }
   23         )
   24 
   25         # Upload built artifact to the Closed Beta track
   26         upload_to_play_store(
   27             track: "beta",
   28             json_key: ENV["JITSI_JSON_KEY_FILE"],
   29             skip_upload_metadata: true,
   30             skip_upload_images: true,
   31             skip_upload_screenshots: true
   32         )
   33     end
   34 end