We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 04327c3 + 9821625 commit 74b3825Copy full SHA for 74b3825
1 file changed
.github/workflows/build_and_publish.yml
@@ -1,3 +1,5 @@
1
+# check runners here https://github.com/actions/runner-images/tree/main
2
+
3
name: build_and_publish
4
5
on:
@@ -19,17 +21,27 @@ jobs:
19
21
20
22
matrix:
23
include:
- - os: ubuntu-latest
24
+ # Linux
25
+ - os: ubuntu-24.04
26
target: x86_64
-
27
28
+ # Windows
29
- os: windows-2025-vs2026
- target: x64
- - os: macos-13
30
31
32
+ # macOS Intel
33
+ - os: macos-15-intel
34
+ target: x86_64
35
36
+ - os: macos-26-intel
37
38
39
+ # macOS ARM64
40
- os: macos-14
41
target: aarch64
42
43
+ - os: macos-26
44
+ target: aarch64
45
46
steps:
47
- uses: actions/checkout@v4
0 commit comments