diff --git a/.github/actions/setup-tools/action.yml b/.github/actions/setup-tools/action.yml index 5c8264b..b8ab65e 100644 --- a/.github/actions/setup-tools/action.yml +++ b/.github/actions/setup-tools/action.yml @@ -42,4 +42,9 @@ runs: - name: Install dependencies if: inputs.skip-install-on-cache-hit == 'false' || (inputs.skip-install-on-cache-hit == 'true' && steps.cache-pnpm-store.cache-hit == 'false') shell: bash - run: pnpm install \ No newline at end of file + run: pnpm install + + - name: Set Xcode 26.0 # minimum support Xcode version by Capacitor 8 + if: runner.os == 'macOS' + shell: bash + run: sudo xcode-select --switch /Applications/Xcode_26.0.app \ No newline at end of file