diff options
author | Soni L <EnderMoneyMod@gmail.com> | 2024-05-08 04:00:33 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-08 00:00:33 -0700 |
commit | 0df6c26d2a6122afcc2c32ff6b608326258d40d9 (patch) | |
tree | 624fb37dc78fa7de871cf6ae7aae7d6077afd2a2 /.github | |
parent | b03f929f1e7b6b49f5e0d8c380859b572e30444c (diff) | |
download | wabt-0df6c26d2a6122afcc2c32ff6b608326258d40d9.tar.gz wabt-0df6c26d2a6122afcc2c32ff6b608326258d40d9.tar.bz2 wabt-0df6c26d2a6122afcc2c32ff6b608326258d40d9.zip |
Align release workflow with CI, for Apple Silicon (#2415)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_release.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index 07b19d96..51abe148 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 |