diff --git a/.github/actions/setup-e2e-env/action.yml b/.github/actions/setup-e2e-env/action.yml index e6b86dd3..1763bef7 100644 --- a/.github/actions/setup-e2e-env/action.yml +++ b/.github/actions/setup-e2e-env/action.yml @@ -330,7 +330,13 @@ runs: - name: Install applesimutils if: ${{ inputs.platform == 'ios' }} - run: brew tap wix/brew && brew install applesimutils + run: | + if ! brew list applesimutils &>/dev/null; then + brew tap wix/brew + brew install applesimutils + else + echo "applesimutils is already installed, skipping..." + fi shell: bash - name: Check simutils