Skip to content

Commit

Permalink
chore: Fixing Workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
niyajali committed Nov 26, 2024
1 parent bfb0919 commit 5f6001d
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/internal_or_beta_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ jobs:
if: ${{ matrix.os }} == 'macos-latest'
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: false
bundler-cache: true

- name: Install Fastlane
if: ${{ matrix.os }} == 'macos-latest'
run: |
gem install bundler:2.2.27
bundle exec fastlane add_plugin firebase_app_distribution
bundle exec fastlane add_plugin increment_build_number
bundle install --jobs 4 --retry 3
- name: Build iOS App
Expand All @@ -83,12 +85,14 @@ jobs:
- name: Configure Ruby
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: false
bundler-cache: true

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- uses: ./.github/actions/create-release-number
bundle exec fastlane add_plugin firebase_app_distribution
bundle exec fastlane add_plugin increment_build_number
name: Create Release Number
id: rel_number

Expand Down Expand Up @@ -179,12 +183,14 @@ jobs:
- name: Configure Ruby
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: false
bundler-cache: true

- name: Install Fastlane
run: |
gem install bundler:2.2.27
bundle install --jobs 4 --retry 3
bundle exec fastlane add_plugin firebase_app_distribution
bundle exec fastlane add_plugin increment_build_number
- name: Upload iOS App to Firebase Distribution
run: bundle exec fastlane ios distribute_ios_app
Expand Down Expand Up @@ -214,12 +220,14 @@ jobs:
- name: Configure Ruby
uses: ruby/setup-ruby@a2bbe5b1b236842c1cb7dd11e8e3b51e0a616acc # v1.202.0
with:
bundler-cache: false
bundler-cache: true

- name: Install Fastlane
run: |
gem install bundler:2.2.27
bundle install --jobs 4 --retry 3
bundle exec fastlane add_plugin firebase_app_distribution
bundle exec fastlane add_plugin increment_build_number
- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4
Expand Down

0 comments on commit 5f6001d

Please sign in to comment.