Skip to content

Commit 53fde42

Browse files
committed
try escape quotes
1 parent 72ecf94 commit 53fde42

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
steps:
3636
- run: echo "$GITHUB_EVENT_NAME"
3737
- id: step
38-
run: echo "matrix_os=[macos-13, ubuntu-22.04, windows-2022]" >> $GITHUB_OUTPUT
38+
run: echo "matrix_os=\"[\"macos-13\", \"ubuntu-22.04\", \"windows-2022\"]\"" >> $GITHUB_OUTPUT
3939

4040

4141
whl_3_8:
@@ -45,7 +45,7 @@ jobs:
4545
fail-fast: false
4646
matrix:
4747
# os: [macos-13-xlarge, ubuntu-22.04, windows-2022]
48-
os: ${{fromJson(needs.matrix_config.outputs.matrix_os)}}
48+
os: ${{ fromJson(needs.matrix_config.outputs.matrix_os) }}
4949
minor: [8]
5050
runs-on: ${{ matrix.os }}
5151
steps:

0 commit comments

Comments
 (0)