Skip to content

Commit

Permalink
fix: fix bug in tests
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 48ea910 commit c4b65d0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,17 @@ 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

0 comments on commit c4b65d0

Please sign in to comment.