We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 521bab7 commit d8b709eCopy full SHA for d8b709e
.github/workflows/cd.yml
@@ -7,14 +7,25 @@ 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]
+ - script-id: win32
15
+ runs-on: ubuntu-latest
16
+ OS_NAME: linux
17
+ - script-id: win64
18
19
20
+ - script-id: mac
21
22
23
+ - script-id: mac_arm64_host
24
+ runs-on: macos-14
25
+ OS_NAME: macos
26
env:
27
FILE_ENV: ./cd/00_setup_env_${{ matrix.script-id }}.sh
- OS_NAME: linux
28
+ OS_NAME: ${{ matrix.OS_NAME }}
29
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
steps:
31
- name: checkout
0 commit comments