File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -39,11 +39,13 @@ mkdir -p "$(dirname "$output")"
3939
4040xunit-viewer --results=" $results " --output=" $output " --console=true --title=" $title "
4141
42- recommended_attachment_name=" test-results-$GITHUB_REPOSITORY -$GITHUB_WORKFLOW -$HOSTNAME -$GITHUB_RUN_ID "
42+
43+ report_name=" test-results-$GITHUB_REPOSITORY -$GITHUB_WORKFLOW -$HOSTNAME -$GITHUB_RUN_ID "
44+ report_name_escaped=$( echo " $report_name " | tr /\\ :* \<\>\| ? -)
4345
4446echo ::set-output name=report-file::" $output " # reference available to other actions
4547echo ::set-output name=report-dir::" $report_dir " # for easy attachment of a folder
46- echo ::set-output name=report-name::" $recommended_attachment_name " # to provide a globally unique name for downloading results
48+ echo ::set-output name=report-name::" $report_name_escaped " # to provide a globally unique name for downloading results
4749
4850# report non zero exit code if any failure or error detected
4951if " $fail " == " true" ; then
You can’t perform that action at this time.
0 commit comments