Problem with azure pipeline in xcode 14.2 failed fastlane when archive

Hello guys, I have the next problem with azure when the pipeline run fastlane failed the archive in the end to execution.

In the local in machine computer intel run the pipeline very well, but in computer M1 the pipeline not worked and the pipeline with run virtual machine not worked

my environment with fastlane

  • Ruby 3.1.0
  • Fastlane 2.211.0

added to the project the next solution with xcode 14

post_install do |installer|
  react_native_post_install(installer)
  __apply_Xcode_12_5_M1_post_install_workaround(installer)
  flipper_post_install(installer)
  
  # XCode 14 fix
  installer.generated_projects.each do |project|
    project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
        config.build_settings['ENABLE_BITCODE'] = 'NO'
      
        config.build_settings['SUPPORTED_PLATFORMS'] = 'iphoneos iphonesimulator'
        config.build_settings['SUPPORTS_MACCATALYST'] = 'NO'
        config.build_settings['SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD'] = 'NO'
      end
    end
  end
end
installer.generated_projects.each do |project|
    project.targets.each do |target|
      target.build_configurations.each do |config|
        config.build_settings["DEVELOPMENT_TEAM"] = "developer code"
      end

any idea what is the problem? help me please

God bless you

I attach the log of pipeline

Problem with azure pipeline in xcode 14.2 failed fastlane when archive
 
 
Q