'HTML reports is broken when its downloaded from github action using github artifact
I am running my test into GitHub action and after test execution is completed I download generated report using github/action-artifact and when I open that report design is broken.
My report is in the below format when I generate it from my local.

and when I download reports from GitHub action it looks like the below format.
What is the problem can anyone know?
Solution 1:[1]
Please look up the header in the html report generated by pytest-html, it holds:
<head>
<meta charset="utf-8">
<title>YOUR TITLE</title>
<link href="assets/style.css" rel="stylesheet" type="text/css">
</head>
If you have screenshots (using Extras), they are located in basedir.
The rest I believe is enclosed in the *.html file.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | MortenB |

