From 0df6c26d2a6122afcc2c32ff6b608326258d40d9 Mon Sep 17 00:00:00 2001 From: Soni L Date: Wed, 8 May 2024 04:00:33 -0300 Subject: [PATCH] Align release workflow with CI, for Apple Silicon (#2415) --- .github/workflows/build_release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 07b19d969..51abe148f 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -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 @@ -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