From 79c7731c5044ba19da83b0ef2f71b47e54f84e3b Mon Sep 17 00:00:00 2001 From: Nigel Banks Date: Thu, 12 Dec 2024 11:25:38 +0100 Subject: [PATCH] Turns out it needs a unique name. A conflict occurs with the new version of "upload-artifact", if the step has the same name. --- .github/workflows/integration-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-test.yml b/.github/workflows/integration-test.yml index 55acf08..7c5c6c6 100644 --- a/.github/workflows/integration-test.yml +++ b/.github/workflows/integration-test.yml @@ -58,7 +58,7 @@ jobs: if: ${{ always() }} uses: actions/upload-artifact@v4 with: - name: docker-logs + name: docker-logs-${{ matrix.os }} path: logs/* - name: Notify Slack on nightly test failure