Skip to content

Commit d9692f1

Browse files
committed
fix: resolve incorrect matrix variable usage in workflow
1 parent a7ba3b4 commit d9692f1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/reusable-test-runner.yaml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,6 @@ jobs:
5757
strategy:
5858
fail-fast: false
5959
matrix:
60-
unity-version: ${{ inputs.unity-version }}
61-
projectPath: ${{ inputs.project-path }}
6260
testMode: ${{ fromJson(needs.prepare-test-modes.outputs.array) }}
6361

6462
steps:
@@ -78,7 +76,8 @@ jobs:
7876
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
7977
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
8078
with:
81-
projectPath: ${{ matrix.projectPath }}
79+
unityVersion: ${{ inputs.unity-version }}
80+
projectPath: ${{ inputs.projectPath }}
8281
testMode: ${{ matrix.testMode }}
8382
artifactsPath: ${{ matrix.testMode }}-artifacts
8483
githubToken: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)