Skip to content

Commit 1a088ce

Browse files
committed
Fix matrix
1 parent 047f425 commit 1a088ce

File tree

2 files changed

+14
-2
lines changed

2 files changed

+14
-2
lines changed

.github/workflows/build.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,13 @@ jobs:
1313
runs-on: ${{ matrix.os }}
1414
strategy:
1515
matrix:
16-
os: [ubuntu-latest, windows-latest, macos-latest]
16+
include:
17+
- name: Windows
18+
os: [windows-latest]
19+
- name: Linux
20+
os: [ubuntu-latest]
21+
- name: macOS
22+
os: [macos-latest]
1723
steps:
1824
- uses: actions/checkout@v4
1925
with:

.github/workflows/release.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,13 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
os: [ubuntu-latest, windows-latest, macos-latest]
13+
include:
14+
- name: Windows
15+
os: [windows-latest]
16+
- name: Linux
17+
os: [ubuntu-latest]
18+
- name: macOS
19+
os: [macos-latest]
1420
steps:
1521
- uses: actions/checkout@v4
1622
with:

0 commit comments

Comments
 (0)