From 142ba2691b66a299b2ff3f5e45584a7417515dbe Mon Sep 17 00:00:00 2001 From: sangeeths03 Date: Tue, 20 May 2025 15:25:37 +0530 Subject: [PATCH] Update fastlane.yml --- .github/workflows/fastlane.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/fastlane.yml b/.github/workflows/fastlane.yml index 345fbeb1..1810da3c 100644 --- a/.github/workflows/fastlane.yml +++ b/.github/workflows/fastlane.yml @@ -22,9 +22,14 @@ jobs: - name: Setup Ruby and Bundler uses: ruby/setup-ruby@v1 with: - ruby-version: '3.3.0' - bundler-cache: true - + ruby-version: '3.3.0' + # Disable automatic caching by the action, we'll do it manually + # bundler-cache: true # <-- Remove or comment this line + + - name: Install Fastlane Gems (Manual bundle install) + run: bundle install + working-directory: Fastlanedemoapp/ # Ensure we're in the right directory for Gemfile + - name: Run Fastlane Tests - run: bundle exec fastlane test || true - working-directory: Fastlanedemoapp/ + run: bundle exec fastlane test || true + working-directory: Fastlanedemoapp/ # Remains the same