about summary refs log tree commit diff
diff options
context:
space:
mode:
authorHailey <me@haileyok.com>2024-05-29 01:50:06 -0700
committerGitHub <noreply@github.com>2024-05-29 01:50:06 -0700
commit613884a3d388b814244fc620c7a06c4742851585 (patch)
treef2e673fc8f08a94137431bfaddc8bb8f6c85080e
parent211eff3d32760695faeb986d6c51de5dd5379411 (diff)
downloadvoidsky-613884a3d388b814244fc620c7a06c4742851585.tar.zst
use xcode 15.3 (#4253)
* use xcode 15.3

* tweak cache update
-rw-r--r--.github/workflows/build-submit-android.yml4
-rw-r--r--.github/workflows/build-submit-ios.yml8
-rw-r--r--.github/workflows/bundle-deploy-eas-update.yml4
3 files changed, 12 insertions, 4 deletions
diff --git a/.github/workflows/build-submit-android.yml b/.github/workflows/build-submit-android.yml
index b039512d6..c487c2ab8 100644
--- a/.github/workflows/build-submit-android.yml
+++ b/.github/workflows/build-submit-android.yml
@@ -123,11 +123,11 @@ jobs:
       - name: ⬇️ Restore Cache
         id: get-base-commit
         uses: actions/cache@v4
-        if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }}
+        if: ${{ inputs.profile == 'testflight' }}
         with:
           path: most-recent-testflight-commit.txt
           key: most-recent-testflight-commit
 
       - name: ✏️ Write commit hash to cache
-        if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }}
+        if: ${{ inputs.profile == 'testflight' }}
         run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
diff --git a/.github/workflows/build-submit-ios.yml b/.github/workflows/build-submit-ios.yml
index 0256e9687..c1693b814 100644
--- a/.github/workflows/build-submit-ios.yml
+++ b/.github/workflows/build-submit-ios.yml
@@ -47,6 +47,10 @@ jobs:
       - name: ⚙️ Install dependencies
         run: yarn install
 
+      - uses: maxim-lobanov/setup-xcode@v1
+        with:
+          xcode-version: '15.3'
+
       - name: ☕️ Setup Cocoapods
         uses: maxim-lobanov/setup-cocoapods@v1
         with:
@@ -80,11 +84,11 @@ jobs:
       - name: ⬇️ Restore Cache
         id: get-base-commit
         uses: actions/cache@v4
-        if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }}
+        if: ${{ inputs.profile == 'testflight' }}
         with:
           path: most-recent-testflight-commit.txt
           key: most-recent-testflight-commit
 
       - name: ✏️ Write commit hash to cache
-        if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }}
+        if: ${{ inputs.profile == 'testflight' }}
         run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
diff --git a/.github/workflows/bundle-deploy-eas-update.yml b/.github/workflows/bundle-deploy-eas-update.yml
index 192593b9b..039b4150a 100644
--- a/.github/workflows/bundle-deploy-eas-update.yml
+++ b/.github/workflows/bundle-deploy-eas-update.yml
@@ -170,6 +170,10 @@ jobs:
       - name: ⚙️ Install dependencies
         run: yarn install
 
+      - uses: maxim-lobanov/setup-xcode@v1
+        with:
+          xcode-version: '15.3'
+
       - name: ☕️ Setup Cocoapods
         uses: maxim-lobanov/setup-cocoapods@v1
         with: