Skip to content

Commit

Permalink
Align release workflow with CI, for Apple Silicon (#2415)
Browse files Browse the repository at this point in the history
  • Loading branch information
SoniEx2 authored May 8, 2024
1 parent b03f929 commit 0df6c26
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-20.04, macos-12, windows-latest]
os: [ubuntu-20.04, macos-12, macos-14, windows-latest]
defaults:
run:
shell: bash
steps:
- uses: actions/setup-python@v1
- uses: actions/setup-python@v5
with:
python-version: '3.x'
- uses: actions/checkout@v1
Expand All @@ -33,7 +33,7 @@ jobs:

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

- name: install ninja (win)
run: choco install ninja
Expand Down

0 comments on commit 0df6c26

Please sign in to comment.