Skip to content

Commit 5451997

Browse files
committed
fix(ci): use macos-26 runner for Logo.icon support
The new .icon format requires a macOS 26 runner with stable Xcode. Removes the ASSETCATALOG_COMPILER_APPICON_NAME workaround.
1 parent e9e16a4 commit 5451997

1 file changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@ permissions:
1111
jobs:
1212
build:
1313
name: Build unsigned release
14-
runs-on: macos-15
14+
runs-on: macos-26
1515

1616
steps:
1717
- uses: actions/checkout@v4
1818

19+
- name: List Xcode versions
20+
run: ls -d /Applications/Xcode*.app
21+
1922
- name: Select Xcode
2023
run: sudo xcode-select -s "$(ls -d /Applications/Xcode*.app | sort -V | tail -1)/Contents/Developer"
2124

@@ -40,8 +43,7 @@ jobs:
4043
CODE_SIGNING_ALLOWED=NO \
4144
CODE_SIGN_ENTITLEMENTS="" \
4245
DEVELOPMENT_TEAM="" \
43-
MARKETING_VERSION="${{ steps.version.outputs.version }}" \
44-
ASSETCATALOG_COMPILER_APPICON_NAME=""
46+
MARKETING_VERSION="${{ steps.version.outputs.version }}"
4547
4648
- name: Package zip
4749
run: |

0 commit comments

Comments
 (0)