sebbo
sebbo

Reputation: 2939

fastlane: Deploy to local iOS device

I am using fastlane to manage provisioning profiles, push builds to TestFlight etc. but now I was wondering if it is possible to deploy on my local (USB) iOS device by any fastlane command or pipeline?

Especially deploying a React Native app to the local device via fastlane would be awesome?

Upvotes: 8

Views: 2655

Answers (1)

mokagio
mokagio

Reputation: 17471

There is no such option yet, at least that I am aware of.

You can see all the available fastlane commands, "actions" using fastlane's terminology, by typing fastlane actions.

One tool you can use to deploy an app to a connected device from the terminal is to use ios-deploy.

You could build the app using fastlane's gym, then run ios-deploy.

The tool is distributed via npm. If you are keen on keeping your toolchain Ruby only, there is a gem wrapping it ios-deploy-gem, which might not bu up-to-date though.

Upvotes: 7

Related Questions