Skip to content

Commit

Permalink
fix: fix bug gem
Browse files Browse the repository at this point in the history
Signed-off-by: Jason C. Leach <[email protected]>
  • Loading branch information
jleach committed Oct 5, 2023
1 parent c4b65d0 commit a230a9a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,11 @@ jobs:
run: |
yarn lerna run build
# There is a bug in activesupport 7.0.8 that causes a
# build failure. This is a workaround until the bug is
# fixed.
# https://stackoverflow.com/questions/77236339/after-updating-cocoapods-to-1-13-0-it-throws-error
- name: Install iOS dependencies
# if: steps.pod-cache.outputs.cache-hit != 'true' || steps.npm-cache.outputs.cache-hit != 'true'
working-directory: ./packages/legacy/app/ios
run: |
gem install cocoapods && \
gem uninstall activesupport && \
gem install activesupport -v 7.0.8 && \
pod install && \
git status && \
git diff Podfile.lock
Expand Down
1 change: 1 addition & 0 deletions packages/legacy/app/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
source 'https://rubygems.org'
# You may use http://rbenv.org/ or https://rvm.io/ to install and use this version
ruby ">= 2.6.10"
gem 'activesupport', '~> 7.0', '<= 7.0.8'
gem 'cocoapods', '~> 1.12'

0 comments on commit a230a9a

Please sign in to comment.