Skip to content

Commit ad4598e

Browse files
authored
Merge pull request #791 from Universal-Debloater-Alliance/722-bugci-latest-release-artifact-not-working-on-macos-ventura-intel
build(ci): add runner for MacOS with Intel CPU
2 parents 6991c2a + 467aa37 commit ad4598e

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/build_artifacts.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,20 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
build_target: [linux, macos, windows]
12+
build_target: [linux, macos, macos-13, windows]
1313
update_feature: [self-update, no-self-update]
1414
exclude:
1515
- build_target: windows
1616
update_feature: no-self-update
17+
- build_target: macos-13
18+
os: macos-latest # Avoid duplicate runs on macos-latest
1719
include:
1820
- build_target: linux
1921
os: ubuntu-latest
2022
- build_target: macos
2123
os: macos-latest
24+
- build_target: macos-13
25+
os: macos-13
2226
- build_target: windows
2327
os: windows-latest
2428
- update_feature: self-update
@@ -52,7 +56,7 @@ jobs:
5256
if: matrix.os != 'windows-latest'
5357
run: tar -czf uad-ng${{ matrix.update_name }}-${{ matrix.build_target }}{.tar.gz,}
5458
- name: Install coreutils for macOS
55-
if: matrix.os == 'macos-latest'
59+
if: startsWith(matrix.os, 'macos')
5660
run: brew install coreutils
5761
- name: Create checksums for binaries and archives [Windows]
5862
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)