diff --git a/.github/workflows/build_artifacts.yml b/.github/workflows/build_artifacts.yml index c0d0891..2c0fabf 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'