Skip to content

Commit

Permalink
use different artifact names for python and js
Browse files Browse the repository at this point in the history
  • Loading branch information
timkpaine committed Jun 16, 2024
1 parent 5c9c4d7 commit 6530167
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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() }}

Expand Down

0 comments on commit 6530167

Please sign in to comment.