From 79f1e1768e6d54c722ecd689ce67c3a59ecdc175 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Guly=C3=A1s?= Date: Thu, 12 Dec 2024 13:40:18 +0100 Subject: [PATCH] NEVISACCESSAPP-6370: Using the `pod` executable directly from the bundle --- .github/actions/setup-ios/action.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/actions/setup-ios/action.yml b/.github/actions/setup-ios/action.yml index d92345b..c6c8268 100644 --- a/.github/actions/setup-ios/action.yml +++ b/.github/actions/setup-ios/action.yml @@ -19,6 +19,7 @@ runs: - name: Add Private Cocoapods Repo if: ${{ env.BUILD_TYPE == 'SNAPSHOT' }} shell: bash + working-directory: 'ios' run: | - pod repo remove ${{ env.PRIVATE_NATIVE_IOS_REPOSITORY_NAME }} &> /dev/null || true - pod repo add ${{ env.PRIVATE_NATIVE_IOS_REPOSITORY_NAME }} ${{ env.PRIVATE_NATIVE_IOS_REPOSITORY_URL }} + bundle exec pod repo remove ${{ env.PRIVATE_NATIVE_IOS_REPOSITORY_NAME }} &> /dev/null || true + bundle exec pod repo add ${{ env.PRIVATE_NATIVE_IOS_REPOSITORY_NAME }} ${{ env.PRIVATE_NATIVE_IOS_REPOSITORY_URL }}