Using Fastlane to automate beta deployments and releases for your iOS and Android apps
Installing fastlane
RubyGems (macOS/Linux/Windows)
sudo gem install fastlane -NV
Homebrew (macOS)
brew install fastlane
Setting up fastlane
Navigate to your iOS or Android app and run
fastlane init
Loading Environment Variables from .env
ios/fastlane/Appfile
apple_id("user@mvpfastlane.com") # Your Apple email address
# should be
apple_id ENV["APPLE_ID"]
Codesigning
PreviousGithub - Deploying a Nest.js App to AWS Elastic Beanstalk (Node.js Platform) with Github ActionsNextNodeBB
Last updated
Was this helpful?