From edddc536599bcbee6107909fcd897788a1a115d8 Mon Sep 17 00:00:00 2001 From: Javier Briones <1674192+jvbriones@users.noreply.github.com> Date: Wed, 15 Oct 2025 07:55:14 +0200 Subject: [PATCH] chore: avoid applesimutils warning due already installed pacakge --- .github/actions/setup-e2e-env/action.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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