Skip to content

Commit

Permalink
add workflow and fastlane
Browse files Browse the repository at this point in the history
  • Loading branch information
aidaiym committed Jul 31, 2024
1 parent 1e69fd0 commit db022c0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/app_distribution_ios.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,18 +20,20 @@ jobs:
with:
ruby-version: 3.2

- name: Install Build Tools
run: |
xcode-select --install # Install Xcode command line tools
brew install make # Install make via Homebrew (if not already available)
- name: Install Bundler
run: gem install bundler

- name: Clear RubyGems Cache
run: |
rm -rf ~/.bundle/cache
- name: Install Specific Gem Versions
- name: Install Dependencies
run: |
gem install nkf
gem install strscan # Try to install the specific gem that is causing issues
gem install rexml # Ensure rexml is also installed
gem install fastlane
cd app/ios/fastlane
bundle install --retry 3 --jobs 4
Expand Down

0 comments on commit db022c0

Please sign in to comment.