From 5f78120de76d291efa05936f254b9fdcdf56a41e Mon Sep 17 00:00:00 2001 From: Max Date: Thu, 10 Oct 2024 21:21:55 +0100 Subject: [PATCH] Release job should upload test logs on failure (#6557) --- .github/workflows/release.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2df2d3f256d3..b2c694921443 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: |