Skip to content

Commit 93d4b02

Browse files
committed
make macos build on macos-13
1 parent d87cbb9 commit 93d4b02

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
os: [macOS-latest, ubuntu-latest, windows-latest]
15+
os: [macos-13, ubuntu-latest, windows-latest]
1616

1717
steps:
1818
- uses: actions/checkout@v3
@@ -23,7 +23,7 @@ jobs:
2323
toolchain: ${{ startsWith(matrix.os, 'windows') && 'MSVC' || 'Clang' }}
2424

2525
- name: Setup Apple
26-
if: startsWith(matrix.os, 'macOS')
26+
if: startsWith(matrix.os, 'macos')
2727
uses: ./.github/actions/setup-apple
2828

2929
- name: Build
@@ -46,7 +46,7 @@ jobs:
4646
cp -a build/ dist/win-x86/
4747
4848
- name: Move MacOS files
49-
if: startsWith(matrix.os, 'macOS')
49+
if: startsWith(matrix.os, 'macos')
5050
run: |
5151
mkdir -p dist/osx
5252
cp -a build/ dist/osx/

0 commit comments

Comments
 (0)