diff --git a/.github/workflows/build-apps.yml b/.github/workflows/build-apps.yml index 55b37a8..dbc0dc7 100644 --- a/.github/workflows/build-apps.yml +++ b/.github/workflows/build-apps.yml @@ -68,6 +68,14 @@ jobs: - name: Install dependencies run: npm install + - name: Cache cocoapods + uses: actions/cache@v3 + with: + path: /ios/Pods + key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} + restore-keys: | + ${{ runner.os }}-pods- + - name: Install pod dependencies run: | cd ios