Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ architecture=$(uname -m)
report_name="test-results-$GITHUB_REPOSITORY-$GITHUB_WORKFLOW-$architecture-$GITHUB_RUN_ID"
report_name_escaped=$(echo "$report_name" | tr /\\:*\<\>\|? -)

echo ::set-output name=report-file::"$output" #reference available to other actions
echo ::set-output name=report-dir::"$report_dir" #for easy attachment of a folder
echo ::set-output name=report-name::"$report_name_escaped" #to provide a globally unique name for downloading results
echo "report-file=${output}" >> $GITHUB_OUTPUT #reference available to other actions
echo "report-dir=${report_dir}" >> $GITHUB_OUTPUT #for easy attachment of a folder
echo "report-name=${report_name_escaped}" >> $GITHUB_OUTPUT #to provide a globally unique name for downloading results

# report non zero exit code if any failure or error detected
if "$fail" == "true";then
Expand Down