We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeff99c commit ce97b73Copy full SHA for ce97b73
1 file changed
.github/workflows/ci.yml
@@ -211,11 +211,19 @@ jobs:
211
with:
212
pattern: test-report
213
214
+ - name: Zip test report
215
+ run: zip -r test-report.zip *
216
+ working-directory: test-report
217
+
218
+ - name: Zip test coverage
219
+ run: zip -r test-coverage.zip *
220
+ working-directory: test-coverage
221
222
- name: Attach packages
223
uses: softprops/action-gh-release@72f2c25fcb47643c292f7107632f7a47c1df5cd8 # v2.3.2
224
225
files: |
226
**/*.vsix
- test-report.html
- coverage/*
227
+ test-coverage/test-coverage.zip
228
+ test-report/test-report.zip
229
0 commit comments