Skip to content

Commit 3ecc2ac

Browse files
committed
Fix potential issue in yaml files
1 parent 145767c commit 3ecc2ac

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/wheel-windows-build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
echo "MATRIX=${MATRIX}" | tee --append "${GITHUB_OUTPUT}"
3939
build:
4040
name: ${{ matrix.CUDA_VER }}, ${{ matrix.PY_VER }}, windows
41-
needs: compute-matrix
41+
needs:
42+
- compute-matrix
4243
strategy:
4344
fail-fast: false
4445
matrix: ${{ fromJSON(needs.compute-matrix.outputs.MATRIX) }}

.github/workflows/wheel-windows-tests.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ jobs:
3838
echo "MATRIX=${MATRIX}" | tee --append "${GITHUB_OUTPUT}"
3939
tests:
4040
name: ${{ matrix.CUDA_VER }}, ${{ matrix.PY_VER }}, windows
41-
needs: compute-matrix
41+
needs:
42+
- compute-matrix
4243
strategy:
4344
fail-fast: false
4445
matrix: ${{ fromJSON(needs.compute-matrix.outputs.MATRIX) }}

0 commit comments

Comments
 (0)