From 467aa379b67ad7b8148609db7db6945adaa65a3b Mon Sep 17 00:00:00 2001 From: Anonymoussaurus <50231698+AnonymousWP@users.noreply.github.com> Date: Sun, 12 Jan 2025 17:17:37 +0100 Subject: [PATCH] build(ci): add runner for MacOS with Intel CPU --- .github/workflows/build_artifacts.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_artifacts.yml b/.github/workflows/build_artifacts.yml index c0d0891a..2c0fabf6 100644 --- a/.github/workflows/build_artifacts.yml +++ b/.github/workflows/build_artifacts.yml @@ -9,16 +9,20 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - build_target: [linux, macos, windows] + build_target: [linux, macos, macos-13, windows] update_feature: [self-update, no-self-update] exclude: - build_target: windows update_feature: no-self-update + - build_target: macos-13 + os: macos-latest # Avoid duplicate runs on macos-latest include: - build_target: linux os: ubuntu-latest - build_target: macos os: macos-latest + - build_target: macos-13 + os: macos-13 - build_target: windows os: windows-latest - update_feature: self-update @@ -52,7 +56,7 @@ jobs: if: matrix.os != 'windows-latest' run: tar -czf uad-ng${{ matrix.update_name }}-${{ matrix.build_target }}{.tar.gz,} - name: Install coreutils for macOS - if: matrix.os == 'macos-latest' + if: startsWith(matrix.os, 'macos') run: brew install coreutils - name: Create checksums for binaries and archives [Windows] if: matrix.os == 'windows-latest'