diff --git a/.github/workflows/deploy-nightly-testflight.yml b/.github/workflows/deploy-nightly-testflight.yml index 8852452f626..fa02977c2cd 100644 --- a/.github/workflows/deploy-nightly-testflight.yml +++ b/.github/workflows/deploy-nightly-testflight.yml @@ -5,7 +5,7 @@ on: push: branches: - hailey/use-eas-version-code - - + jobs: build: name: Deploy Nightly Testflight Release @@ -45,17 +45,14 @@ jobs: with: version: 1.14.3 - - name: 💾 Setup Ruby + Cache Gems - uses: ruby/setup-ruby@v1 - with: - bundler-cache: true - - name: 💾 Cache Pods uses: actions/cache@v3 id: pods-cache with: path: ./ios/Pods - key: ${{ runner.os }}-pods-${{ hashFiles('ios/Podfile.lock') }} + # We'll use the yarn.lock for our hash since we don't yet have a Podfile.lock. Pod versions will not + # change unless the yarn version changes as well. + key: ${{ runner.os }}-pods-${{ hashFiles('./yarn.lock') }} - name: 🏗️ EAS Build run: yarn use-build-number eas build -p ios --profile github --local --output build.ipa --non-interactive