From 20619a7c9fc074200088b05a6a245ec10c2e621a Mon Sep 17 00:00:00 2001 From: Akhil Mohan Date: Tue, 16 Jan 2024 18:30:18 +0530 Subject: [PATCH] ci: make artifact name unique in linux integration actions/upload-artifact@v4 marks artifacts as immutable. Thus, tests which use matrix should have a unique artifact name while using upload-artifact github action Ref: https://github.com/actions/upload-artifact/releases/tag/v4.0.0 Signed-off-by: Akhil Mohan --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c78340ef8..4e0e75ab2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -569,7 +569,7 @@ jobs: - uses: actions/upload-artifact@v3 if: always() with: - name: TestResults ${{ matrix.runtime }} ${{matrix.runc}} + name: TestResults ${{ matrix.runtime }} ${{matrix.runc}} ${{ matrix.os }} path: | *-junit.xml *-gotest.json