From 21b2dfaf94bf9576fb3085acc492141c7aae5817 Mon Sep 17 00:00:00 2001 From: Adrian Castro <22133246+castdrian@users.noreply.github.com> Date: Tue, 2 Apr 2024 02:26:52 +0200 Subject: [PATCH] fix: perhaps fix compile error --- .github/workflows/build-mobile-comment.yml | 5 ----- .github/workflows/build-mobile.yml | 5 ----- .github/workflows/release-mobile.yml | 5 ----- .../ios/CheckIosCertificateModule.swift | 2 +- 4 files changed, 1 insertion(+), 16 deletions(-) diff --git a/.github/workflows/build-mobile-comment.yml b/.github/workflows/build-mobile-comment.yml index c9e50f6..87fc0f7 100644 --- a/.github/workflows/build-mobile-comment.yml +++ b/.github/workflows/build-mobile-comment.yml @@ -75,11 +75,6 @@ jobs: with: ref: ${{ steps.comment-branch.outputs.head_ref }} - - name: Xcode Select Version - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: "15.1.0" - - uses: pnpm/action-setup@v3 name: Install pnpm with: diff --git a/.github/workflows/build-mobile.yml b/.github/workflows/build-mobile.yml index 6b2d28c..86e1571 100644 --- a/.github/workflows/build-mobile.yml +++ b/.github/workflows/build-mobile.yml @@ -66,11 +66,6 @@ jobs: - name: Checkout code uses: actions/checkout@v4 - - name: Xcode Select Version - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: "15.1.0" - - uses: pnpm/action-setup@v3 name: Install pnpm with: diff --git a/.github/workflows/release-mobile.yml b/.github/workflows/release-mobile.yml index 762b708..76545a7 100644 --- a/.github/workflows/release-mobile.yml +++ b/.github/workflows/release-mobile.yml @@ -92,11 +92,6 @@ jobs: - name: Pull version bump run: git pull --all - - name: Xcode Select Version - uses: maxim-lobanov/setup-xcode@v1 - with: - xcode-version: "15.1.0" - - uses: pnpm/action-setup@v3 name: Install pnpm with: diff --git a/apps/expo/modules/check-ios-certificate/ios/CheckIosCertificateModule.swift b/apps/expo/modules/check-ios-certificate/ios/CheckIosCertificateModule.swift index ba3240a..735aa44 100644 --- a/apps/expo/modules/check-ios-certificate/ios/CheckIosCertificateModule.swift +++ b/apps/expo/modules/check-ios-certificate/ios/CheckIosCertificateModule.swift @@ -11,7 +11,7 @@ public class CheckIosCertificateModule: Module { Name("CheckIosCertificate") // Defines a JavaScript synchronous function that runs the native code on the JavaScript thread. - Function("isDevelopmentProvisioningProfile") { + Function("isDevelopmentProvisioningProfile") -> Bool { #if targetEnvironment(simulator) // Running on the Simulator return true