From 7f66503d95052cffa4efc5a010c5184957e5436a Mon Sep 17 00:00:00 2001 From: Merkost Date: Thu, 20 Aug 2026 12:46:11 +1000 Subject: [PATCH] ci: stop pinning Xcode 16.2 in the publish workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit macOS-latest no longer ships Xcode 16.2 — the runner now offers 26.0 through 26.6 — so "Select Xcode 16.2" fails outright and the 0.5.0 publish never reached Gradle. build.yml already asks for latest-stable and passes on the same runner; publish.yml now matches it. The failure was clean: it happened three steps in, before any Gradle work, so nothing was uploaded. --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 156ca6b..ee93f73 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -13,10 +13,10 @@ jobs: - name: Check out code uses: actions/checkout@v6 - - name: Select Xcode 16.2 + - name: Select Xcode uses: maxim-lobanov/setup-xcode@v1 with: - xcode-version: '16.2' + xcode-version: 'latest-stable' - name: Set up JDK 21 uses: actions/setup-java@v5