From 6530167cf326ee13f21e4b3ec47bad49ffaffd3c Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sat, 15 Jun 2024 21:16:02 -0400 Subject: [PATCH] use different artifact names for python and js --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 421efbd..bcd1df4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,14 +75,14 @@ jobs: - name: Upload test results (Python) uses: actions/upload-artifact@v4 with: - name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }} + name: python-results-${{ matrix.os }}-${{ matrix.python-version }} path: junit.xml if: ${{ always() }} - name: Upload test results (JS) uses: actions/upload-artifact@v4 with: - name: pytest-results-${{ matrix.os }}-${{ matrix.python-version }} + name: js-results-${{ matrix.os }}-${{ matrix.python-version }} path: js/junit.xml if: ${{ always() }}