Skip to content

Commit

Permalink
CI(fix): avoid duplicate artifact names
Browse files Browse the repository at this point in the history
previous action runs were failing because different python versions were all trying to create a single artifact called "python"
  • Loading branch information
NickCrews authored Jul 6, 2024
1 parent 374d5a5 commit fab01f5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
# These are pure-python, so we don't need to worry about platform
name: wheels
# name: Python ${{ matrix.python-version }}
name: wheels-${{ matrix.python-version }}
path: |
dist/*.whl
dist/*.tar.gz
Expand Down

0 comments on commit fab01f5

Please sign in to comment.