From 0a84ca87ca52a4d8f7f3b69dfe77362257a57116 Mon Sep 17 00:00:00 2001 From: Sakul Budhathoki Date: Thu, 21 Dec 2023 17:42:05 +0545 Subject: [PATCH] fix: ios --- .github/workflows/mobile-build.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/mobile-build.yml b/.github/workflows/mobile-build.yml index 7d1942e316..a0a7dbb4e0 100644 --- a/.github/workflows/mobile-build.yml +++ b/.github/workflows/mobile-build.yml @@ -30,9 +30,13 @@ jobs: runs-on: ${{ matrix.runner }} continue-on-error: true steps: + - uses: maxim-lobanov/setup-xcode@v1 + with: + xcode-version: "15.0" + - name: Select xcode if: matrix.platform == 'ios' - run: sudo xcode-select -s /Applications/Xcode.app + run: sudo xcode-select -s /Applications/Xcode_15.0.app - uses: actions/checkout@v3 @@ -83,7 +87,7 @@ jobs: uses: actions/upload-artifact@v3 if: matrix.platform == 'ios' with: - name: teritori-${{ github.sha }}-${{ matrix.platform }} + name: teritori-${{ github.sha }}-${{ matrix.platform }}.ipa path: ${{ env.IPA_FILE }} if-no-files-found: error @@ -103,6 +107,6 @@ jobs: uses: actions/upload-artifact@v3 if: matrix.platform == 'android' with: - name: teritori-${{ github.sha }}-${{ matrix.platform }} + name: teritori-${{ github.sha }}-${{ matrix.platform }}.aab path: ${{ env.AAB_FILE }} if-no-files-found: error