Skip to content
Snippets Groups Projects
Unverified Commit f9e853ed authored by Yaroslav Lobankov's avatar Yaroslav Lobankov
Browse files

ci: store failure logs as artifact in coverage.yml

It looks like the step for storing the artifact with logs after workflow
failures was missed. Now it is added.

NO_DOC=ci
NO_CHANGELOG=ci
NO_TEST=ci

(cherry picked from commit 27f4ba7a)
parent a327a33e
No related branches found
No related tags found
No related merge requests found
......@@ -67,9 +67,17 @@ jobs:
uses: ./.github/actions/send-telegram-notify
if: failure()
- name: Collect artifacts
- name: Collect coverage info
uses: actions/upload-artifact@v2
with:
name: failure-logs
name: coverage
retention-days: 21
path: ./coverage.info
- name: Collect failure logs
uses: actions/upload-artifact@v2
if: failure()
with:
name: failure-logs
retention-days: 21
path: ${{ env.VARDIR }}/artifacts
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment