Skip to content

Commit 470bb4b

Browse files
committed
Fix artifact paths
1 parent a7b956d commit 470bb4b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build_wheels.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- uses: actions/upload-artifact@v4
5757
with:
5858
name: ${{ matrix.os }}
59-
path: ./wheelhouse/
59+
path: wheelhouse
6060
test_library:
6161
name: Test library on ${{ matrix.os }} with Python ${{ matrix.python }} and numpy ${{ matrix.numpy }}
6262
runs-on: ${{ matrix.os }}
@@ -81,7 +81,7 @@ jobs:
8181
- uses: actions/download-artifact@v4
8282
with:
8383
name: ${{ matrix.os }}
84-
path: ./wheelhouse/
84+
path: wheelhouse
8585
- run: python -m pip install toml
8686
- run: python -m pip install 'numpy${{ matrix.numpy }}'
8787
- run: python .github/workflows/install_dependencies.py
@@ -107,7 +107,7 @@ jobs:
107107
- uses: actions/download-artifact@v4
108108
with:
109109
path: wheelhouse
110-
pattern: wheelhouse-*
110+
pattern: "*"
111111
merge-multiple: true
112112
- uses: actions/download-artifact@v4
113113
with:

0 commit comments

Comments
 (0)