We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4903912 commit 27013ecCopy full SHA for 27013ec
1 file changed
.github/workflows/native_build.yaml
@@ -74,6 +74,14 @@ jobs:
74
restore-keys: |
75
${{ runner.os }}-node-
76
77
+ - name: Cache gem bundle
78
+ uses: actions/cache@v4
79
+ with:
80
+ path: ./ci/vendor
81
+ key: ${{ runner.os }}-gembundle-${{ hashFiles('**/Gemfile.lock') }}
82
+ restore-keys: |
83
+ ${{ runner.os }}-gembundle-
84
+
85
- name: Cache cocoapods
86
uses: actions/cache@v4
87
with:
@@ -96,6 +104,7 @@ jobs:
96
104
run: |
97
105
cd ci/ios/
98
106
bundle install
107
+ bundle exec pod repo update --verbose
99
108
bundle exec pod install --verbose
100
109
101
110
- name: Compile iOS
0 commit comments