Reputation: 9
I created a release pipeline in Azure DevOps to run my Cypress tests. Currently it hae the following tasks:
my challange is - how to send TestResults_runId.zip as an $Attachment using my pwershell script ? test results where number is generetated Id
Upvotes: 0
Views: 613
Reputation: 5233
There are many Azure DevOps MarketPlace extension automate this, you can refer to GitHub Send Email and apply to your PowerShell script, or you can just install it and use it within your Task YAML.
Upvotes: 1