From 2b84dd5a3691010d18ff00ebbbb5bbae362d22ed Mon Sep 17 00:00:00 2001 From: xmflsct Date: Wed, 17 Aug 2022 00:00:33 +0200 Subject: [PATCH] Fix expo building --- .github/workflows/build.yml | 2 +- ios/Podfile | 4 ++-- ios/Podfile.properties.json | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 53d4014b..edf2356c 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -122,5 +122,5 @@ jobs: FL_GITHUB_RELEASE_API_BEARER: ${{ secrets.GITHUB_TOKEN }} run: yarn app:build release - name: -- Step 8 -- Publish expo update - run: eas update --non-interactive --auto + run: eas update --auto diff --git a/ios/Podfile b/ios/Podfile index 7adb048d..8aa6f59a 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -20,7 +20,7 @@ target 'tooot' do use_react_native!( :path => config[:reactNativePath], :production => production, - :hermes_enabled => podfile_properties['jsEngine'] == 'hermes', + :hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes', :fabric_enabled => flags[:fabric_enabled], :flipper_configuration => FlipperConfiguration.disabled, # An absolute path to your application root. @@ -51,7 +51,7 @@ end target 'ShareExtension' do use_react_native!( :production => production, - :hermes_enabled => podfile_properties['jsEngine'] == 'hermes', + :hermes_enabled => podfile_properties['expo.jsEngine'] == 'hermes', :flipper_configuration => FlipperConfiguration.disabled ) diff --git a/ios/Podfile.properties.json b/ios/Podfile.properties.json index 484dd29a..b1bd45da 100644 --- a/ios/Podfile.properties.json +++ b/ios/Podfile.properties.json @@ -1,3 +1,3 @@ { - "jsEngine": "hermes" + "expo.jsEngine": "hermes" }