Run Expo Build Locally
As a follow up to my previous TIL about building expo, I just learned that you can run your build locally! Just use the --local
flag.
It's important to note, you will need Ruby installed locally, as well as the fastlane
and cocoapods
gems
gem install fastlane cocoapods # only if you haven't already
eas build --platform ios --profile dev --local
https://docs.expo.dev/build-reference/local-builds/
Tweet