ios – Surprising token at ” fastlane auto deployment match operate

[ad_1]

I’m attempting to setup CI CD for my iOS app. Nevertheless I’m dealing with this error and undecided whats inflicting it. Can somebody advise?

enter image description here

My fastfile

default_platform(:ios)

platform :ios do
  desc "Push a brand new beta construct to TestFlight"
  lane :beta do
    
    create_keychain(
      identify: "take a look at",
      password: "test2",
      default_keychain: true,
      unlock: true,
      timeout: 3600,
      lock_when_sleeps: false
    )
    match(
      kind: "appstore",
      readonly: is_ci,
      keychain_name: "take a look at",
      keychain_password: "test2"
    )

    build_app(workspace: "Runner.xcworkspace", scheme: "Runner", xcargs: "-allowProvisioningUpdates")
    upload_to_testflight
  finish

[ad_2]

Leave a Reply