We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0772b7b commit 3a4693fCopy full SHA for 3a4693f
1 file changed
.github/workflows/release.yml
@@ -23,19 +23,14 @@ jobs:
23
- name: Download test results
24
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
25
with:
26
- pattern: test-results-*
27
- path: testreport/
28
-
29
- - name: Zip test reports
30
- run: |
31
- zip -r testreport.zip testreport
+ pattern: html-test-report
32
33
- name: Attach test report to release assets
34
if: startsWith(github.ref, 'refs/tags/')
35
uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 # v2
36
37
repo_token: ${{ secrets.GITHUB_TOKEN }}
38
- file: testreport.zip
+ file: html-test-report/test_report.html
39
tag: ${{ github.ref }}
40
overwrite: true
41
0 commit comments