Skip to content

Commit 6c2f2e2

Browse files
committed
Fix version
1 parent cf5e6b7 commit 6c2f2e2

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ on:
99
concurrency:
1010
group: ci-${{ github.ref }}
1111
cancel-in-progress: ${{ github.ref != 'refs/heads/master' }}
12-
env:
13-
IOS_SIMULATOR: "iPhone 16"
14-
IOS_VERSION: "18.4"
1512
jobs:
1613
build:
1714
strategy:
1815
matrix:
1916
os: [macos-15, macos-26]
2017
runs-on: ${{ matrix.os }}
18+
env:
19+
IOS_SIMULATOR: ${{ matrix.os == 'macos-15' && 'iPhone 16' || 'iPhone 16e' }}
20+
IOS_VERSION: ${{ matrix.os == 'macos-15' && '18.4' || '26.2' }}
2121
steps:
2222
- uses: actions/checkout@v4
2323
- name: "Lint"

0 commit comments

Comments
 (0)