# Build and Deploy my iOS app with Github Actions and Fastlane
# Setup
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
gem "cocoapods"
gem "fastlane"
For installing the bundle, I had to use the code below. simple bundle install
didn't work.
bundle install --deployment
# References
How to setup Fastlane and Match to release iOS apps automatically on CI/CD server (opens new window)