I am trying to automate the deployment in TestFlight using Fastlane. I want it to continue βin errorβ even if one of the errors in the tracks is missing.
For example, if I run "doall" below and the errors are "item1", I want it to still execute "item2" and "item3".
Is this possible, if so, how? Thank!
lane :item1 do
end
lane :item2 do
end
lane :item3 do
end
lane :doall do
item1
item2
item3
end
error do |lane, exception|
end
source
share