We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d1b15a commit e09fc23Copy full SHA for e09fc23
1 file changed
.github/workflows/dotnet.yml
@@ -120,16 +120,17 @@ jobs:
120
recreate: true
121
path: results.md
122
123
- - name: Upload TRX as artifact (Fork PR fallback)
124
- if: github.event.pull_request.head.repo.fork == true
+ - name: Upload TRX as artifact
+ if: always()
125
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
126
with:
127
- name: test-results
+ name: dotnet-test-results
128
path: "**/*_test_results.trx"
129
130
- - name: Upload Code Coverage Report
+ - name: Upload Code Coverage as artifact
131
132
133
- name: code-coverage-report
134
- path: coverlet/reports
+ name: dotnet-code-coverage
135
+ path: "**/coverage.cobertura.xml"
136
0 commit comments