Skip to content

Commit

Permalink
Release job should upload test logs on failure (#6557)
Browse files Browse the repository at this point in the history
  • Loading branch information
maxtropets authored Oct 10, 2024
1 parent ef1b7c7 commit 5f78120
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,17 @@ jobs:
shell: bash
if: "${{ matrix.platform.name != 'snp' }}"

- name: "Upload logs for ${{ matrix.platform.name }}"
uses: actions/upload-artifact@v4
with:
name: logs-${{ matrix.platform.name }}
path: |
build/workspace/*/*.config.json
build/workspace/*/out
build/workspace/*/err
if-no-files-found: ignore
if: success() || failure()

- name: "Make .deb Package"
id: make_deb
run: |
Expand Down

0 comments on commit 5f78120

Please sign in to comment.