Skip to content

Commit

Permalink
ci: fix artifacts name
Browse files Browse the repository at this point in the history
  • Loading branch information
nightwnvol committed Jun 28, 2024
1 parent 1f8ddfa commit 23cd159
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wheels_windows_${{ matrix.arch[0] }}
name: wheels_${{ matrix.arch[1] }}_${{ matrix.py }}
path: ./wheelhouse/*.whl
if-no-files-found: error

Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wheels_macos_${{ matrix.config.arch[0] }}
name: wheels_macos_${{ matrix.config.arch[1] }}_${{ matrix.config.py }}
path: ./wheelhouse/*.whl
if-no-files-found: error

Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: wheels_linux_${{ matrix.arch[0] }}
name: wheels_linux_${{ matrix.arch[1] }}_${{ matrix.py }}
path: ./wheelhouse/*.whl
if-no-files-found: error

Expand Down

0 comments on commit 23cd159

Please sign in to comment.