From f76012f0878a94bae8a079cab1f517831d18365e Mon Sep 17 00:00:00 2001 From: "K. Shankari" Date: Sat, 21 Dec 2024 08:38:10 -0800 Subject: [PATCH] Fix the automated sdk install build In https://github.com/e-mission/e-mission-phone/pull/1180 we unified the setup scripts so that we don't have separate android and iOS setup. This is because the plugins include both, so installing the plugins will fail unless the dependencies are installed, which, in turn, depends on having cocoapods installed 6dd71f18321c77cfaf3f67ba19911b4bc282396d fixed all the other github action scripts, but left this one out since it wasn't triggered --- .github/workflows/android-automated-sdk-install.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/android-automated-sdk-install.yml b/.github/workflows/android-automated-sdk-install.yml index 2ece9029f..3e4885b41 100644 --- a/.github/workflows/android-automated-sdk-install.yml +++ b/.github/workflows/android-automated-sdk-install.yml @@ -87,7 +87,7 @@ jobs: run: | export JAVA_HOME=$JAVA_HOME_17_X64 export ANDROID_SDK_ROOT=$NEW_ANDROID_SDK_ROOT - bash setup/setup_android_native.sh + bash setup/setup_native.sh - name: Ensure that the path is correct and the project can be activated shell: bash -l {0}