Loc Ann
Loc Ann

Reputation: 475

Publishing html file in AzureDevOps

I have a process that generates a set of HTML files and subfolder containing CSS/Javascript files.

I thought I could use the publish-pipeline-artifact to publish this HTML report and have it displayed but it doesn't work.

Is there another way ?

Upvotes: 2

Views: 8634

Answers (2)

Boris Nikitin
Boris Nikitin

Reputation: 429

I think you meant something like what in this feature request is asked.

Upvotes: 3

PatrickLu-MSFT
PatrickLu-MSFT

Reputation: 51093

Azure DevOps can understand a report if it is in the format of a format called TRX.

Once the report is generated, you can upload using the Azure DevOps workflow function

For html report, one way would be deploy the html files to a web page which allow iframe embedding and then use "Embedded Webpage" widget in Azure DevOps to show the content.

Upvotes: 4

Related Questions