# 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(:ios)

keychain_password = SecureRandom.base64

  platform :ios do
    desc "Description of what the lane does"
    lane :beta do

  api_key = app_store_connect_api_key(
    key_id: "S5PTZMY9P8",
    issuer_id: "0f1ac0c6-ea92-4609-a2f0-c9b239198a75",
    key_filepath: "./../_tools/secrets/AuthKey_S5PTZMY9P8.p8",
    duration: 1200, # optional
    in_house: false, # optional but may be required if using match/sigh
  )

      # https://docs.travis-ci.com/user/common-build-problems/#fastlane
    create_keychain(
      name: ENV["MATCH_KEYCHAIN_NAME"],
      password: keychain_password,
      default_keychain: false,
      unlock: true,
      timeout: 3600,
      add_to_search_list: true
    )

    match(
      type: "appstore",
      keychain_name: ENV["MATCH_KEYCHAIN_NAME"],
      keychain_password: keychain_password,
      readonly: true
    )

  build_app(workspace: "Runner.xcworkspace", scheme: "Runner")

  if ENV["FASTLANE_SKIP_UPLOAD"] == "true"
    puts "Skipping fastlane upload."
    next
  end

  upload_to_testflight(api_key: api_key)
  end
end
