From 49a40b23e815d5d7ab9207c8871ee2f0e05000ed Mon Sep 17 00:00:00 2001 From: Leonid Makarov Date: Fri, 9 Feb 2024 13:48:33 +0100 Subject: [PATCH] Compatibility fix for actions/upload-artifact@v4 --- .github/workflows/default.yaml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/default.yaml b/.github/workflows/default.yaml index 3ecc4e19..de666dce 100644 --- a/.github/workflows/default.yaml +++ b/.github/workflows/default.yaml @@ -203,8 +203,10 @@ jobs: - name: Store test results uses: actions/upload-artifact@v4 with: - name: test-results + name: test-results-${{ env.GIT_SHA7 }}-${{ env.VERSION_PREFIX }}${{ env.VERSION }}-${{ env.ARCH }} path: ${{ github.workspace }}/test-results-*.txt + if-no-files-found: error + overwrite: true push: name: "Push: ${{ matrix.version }}/multi" @@ -247,7 +249,8 @@ jobs: name: Retrieve test results uses: actions/download-artifact@v4 with: - name: test-results + pattern: test-results-${{ env.GIT_SHA7 }}-* + merge-multiple: true - # Generate persistent tags (edge, stable, release) name: Docker image tags