Skip to content

Commit abcf83f

Browse files
🩹 [Fix]: Update output variable name from TestSuites to Tests in Gather-Tests workflow
1 parent 39743b6 commit abcf83f

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

‎.github/workflows/workflow.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ jobs:
160160
name: Gather-Tests
161161
runs-on: ubuntu-latest
162162
outputs:
163-
TestSuites: ${{ fromJson(steps.Gather-Tests.outputs.result).TestSuites }}
163+
Tests: ${{ fromJson(steps.Gather-Tests.outputs.result).Tests }}
164164
steps:
165165
- name: Checkout Code
166166
uses: actions/checkout@v4
@@ -207,16 +207,11 @@ jobs:
207207
Write-Output $output
208208
Set-GitHubStepSummary -Summary $output
209209
210-
211-
212-
213-
214-
215210
TestModuleLocal:
216211
needs:
217212
- Gather-Tests
218213
strategy:
219-
matrix: ${{ fromJson(needs.Gather-Tests.outputs.TestSuites) }}
214+
matrix: ${{ needs.Gather-Tests.outputs.Tests }}
220215
runs-on: ${{ matrix.OS }}
221216
steps:
222217
- name: Test

0 commit comments

Comments
 (0)