We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87d6476 commit 1078568Copy full SHA for 1078568
.github/workflows/cd.yml
@@ -7,14 +7,26 @@ on:
7
8
jobs:
9
release:
10
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.runs-on }}
11
strategy:
12
fail-fast: false
13
matrix:
14
- script-id: [win32, win64, mac]
+ include:
15
+ - script-id: win32
16
+ runs-on: ubuntu-latest
17
+ OS_NAME: linux
18
+ - script-id: win64
19
20
21
+ - script-id: mac
22
23
24
+ - script-id: mac_arm64_host
25
+ runs-on: macos-14
26
+ OS_NAME: macos
27
env:
28
FILE_ENV: ./cd/00_setup_env_${{ matrix.script-id }}.sh
- OS_NAME: linux
29
+ OS_NAME: ${{ matrix.OS_NAME }}
30
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31
steps:
32
- name: checkout
0 commit comments