We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3d9d31 commit 25a93bcCopy full SHA for 25a93bc
1 file changed
.github/workflows/dotnetCi.yml
@@ -147,11 +147,11 @@ jobs:
147
- name: Convert Screenplay reports to HTML
148
continue-on-error: true
149
run: |
150
- for report in Tests/**/ScreenplayReport_*.json
+ for report in $(find Tests/ -type f -name "ScreenplayReport_*.json")
151
do
152
reportDir=$(dirname "$report")
153
outputFile="$reportDir/ScreenplayReport.html"
154
- dotnet run --no-build --framework $Tfm --project CSF.Screenplay.JsonToHtmlReport --ReportPath "$report" --OutputPath $outputFile
+ dotnet run --no-build --framework $Tfm --project CSF.Screenplay.JsonToHtmlReport --ReportPath "$report" --OutputPath "$outputFile"
155
done
156
- name: Upload Screenplay HTML report artifact
157
uses: actions/upload-artifact@v4
0 commit comments