Skip to content

Commit 0df6c26

Browse files
authored
Align release workflow with CI, for Apple Silicon (#2415)
1 parent b03f929 commit 0df6c26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/build_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
os: [ubuntu-20.04, macos-12, windows-latest]
18+
os: [ubuntu-20.04, macos-12, macos-14, windows-latest]
1919
defaults:
2020
run:
2121
shell: bash
2222
steps:
23-
- uses: actions/setup-python@v1
23+
- uses: actions/setup-python@v5
2424
with:
2525
python-version: '3.x'
2626
- uses: actions/checkout@v1
@@ -33,7 +33,7 @@ jobs:
3333

3434
- name: install ninja (osx)
3535
run: brew install ninja
36-
if: matrix.os == 'macos-12'
36+
if: matrix.os == 'macos-12' || matrix.os == 'macos-14'
3737

3838
- name: install ninja (win)
3939
run: choco install ninja

0 commit comments

Comments
 (0)