Bluesky app fork with some witchin' additions 💫

use xcode 15.3 (#4253)

* use xcode 15.3

* tweak cache update

authored by hailey.at and committed by

GitHub 613884a3 211eff3d

+12 -4
+2 -2
.github/workflows/build-submit-android.yml
··· 123 123 - name: ⬇️ Restore Cache 124 124 id: get-base-commit 125 125 uses: actions/cache@v4 126 - if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }} 126 + if: ${{ inputs.profile == 'testflight' }} 127 127 with: 128 128 path: most-recent-testflight-commit.txt 129 129 key: most-recent-testflight-commit 130 130 131 131 - name: ✏️ Write commit hash to cache 132 - if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }} 132 + if: ${{ inputs.profile == 'testflight' }} 133 133 run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
+6 -2
.github/workflows/build-submit-ios.yml
··· 47 47 - name: ⚙️ Install dependencies 48 48 run: yarn install 49 49 50 + - uses: maxim-lobanov/setup-xcode@v1 51 + with: 52 + xcode-version: '15.3' 53 + 50 54 - name: ☕️ Setup Cocoapods 51 55 uses: maxim-lobanov/setup-cocoapods@v1 52 56 with: ··· 80 84 - name: ⬇️ Restore Cache 81 85 id: get-base-commit 82 86 uses: actions/cache@v4 83 - if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }} 87 + if: ${{ inputs.profile == 'testflight' }} 84 88 with: 85 89 path: most-recent-testflight-commit.txt 86 90 key: most-recent-testflight-commit 87 91 88 92 - name: ✏️ Write commit hash to cache 89 - if: ${{ inputs.profile == 'testflight' && github.ref == 'refs/heads/main' }} 93 + if: ${{ inputs.profile == 'testflight' }} 90 94 run: echo ${{ github.sha }} > most-recent-testflight-commit.txt
+4
.github/workflows/bundle-deploy-eas-update.yml
··· 170 170 - name: ⚙️ Install dependencies 171 171 run: yarn install 172 172 173 + - uses: maxim-lobanov/setup-xcode@v1 174 + with: 175 + xcode-version: '15.3' 176 + 173 177 - name: ☕️ Setup Cocoapods 174 178 uses: maxim-lobanov/setup-cocoapods@v1 175 179 with: