From 46e15cacacf209543e7ada46a459c67f0b127878 Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Tue, 12 May 2026 00:26:29 -0700 Subject: [PATCH 1/2] ci: add not about Xcode versions Added comments regarding Xcode version compatibility and simulator availability. --- .github/workflows/publish.js.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.js.yml b/.github/workflows/publish.js.yml index 69b619f19..ef69c3717 100644 --- a/.github/workflows/publish.js.yml +++ b/.github/workflows/publish.js.yml @@ -15,8 +15,12 @@ permissions: id-token: write # to enable use of OIDC for trusted publishing and npm provenance env: + # DO NOT USE 26.4+ for a while since it could drop lower iOS versions forcefully + # while the project config allows such lower versions. + # (at least WDA failed to start on iOS 15) + # Xcode 26.3 looks like it's working as expected. XCODE_VERSION: '16.4' - # Available destination for simulators depend on Xcode version. + # Available destination for simulators depends on Xcode version. DESTINATION_SIM: platform=iOS Simulator,name=iPhone 17 DESTINATION_SIM_TVOS: platform=tvOS Simulator,name=Apple TV 4K (3rd generation) From cf734f242c418658463ee8a78413a6908101409a Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Tue, 12 May 2026 00:31:28 -0700 Subject: [PATCH 2/2] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- .github/workflows/publish.js.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.js.yml b/.github/workflows/publish.js.yml index ef69c3717..250a42e3e 100644 --- a/.github/workflows/publish.js.yml +++ b/.github/workflows/publish.js.yml @@ -15,7 +15,7 @@ permissions: id-token: write # to enable use of OIDC for trusted publishing and npm provenance env: - # DO NOT USE 26.4+ for a while since it could drop lower iOS versions forcefully + # DO NOT USE 26.4+ for a while since it could drop lower iOS versions forcefully # while the project config allows such lower versions. # (at least WDA failed to start on iOS 15) # Xcode 26.3 looks like it's working as expected.