From c8782458531331bd65e260f8a52595b1f1e43cb3 Mon Sep 17 00:00:00 2001 From: Alvin-Zilverstand <524715@vistacollege.nl> Date: Mon, 19 Jan 2026 12:45:29 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fix=20artifact=20name=20conflict?= =?UTF-8?q?=20in=20comprehensive=20testing=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Update artifact names to include Node.js version to prevent conflicts - Ensure unique artifact names for different matrix versions - Fix GitHub Actions artifact upload conflict with unique naming - Maintain comprehensive test reporting with unique identifiers This resolves the GitHub Actions artifact conflict by ensuring unique names for artifacts from different Node.js versions in the matrix strategy. --- .github/workflows/ci-testing-only.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci-testing-only.yml b/.github/workflows/ci-testing-only.yml index 7b05fcf..2d84c0d 100644 --- a/.github/workflows/ci-testing-only.yml +++ b/.github/workflows/ci-testing-only.yml @@ -165,5 +165,5 @@ jobs: - name: Upload final status report uses: actions/upload-artifact@v4 with: - name: final-status-report + name: final-status-report-node-${{ matrix.node-version }} path: final-status-report.md \ No newline at end of file