Skip to content

Commit fd2d95b

Browse files
authored
Rename download step and update paths for wheels
1 parent 7cecfaa commit fd2d95b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,14 +142,15 @@ jobs:
142142
runs-on: ubuntu-latest
143143

144144
steps:
145-
- name: Download Python wheels
145+
- name: Download all wheels
146146
uses: actions/download-artifact@v4
147147
with:
148-
path: dist
148+
path: artifacts
149149

150150
- name: Collect wheels
151151
run: |
152-
find dist -name "*.whl" -exec mv {} dist/ \;
152+
mkdir -p dist
153+
find artifacts -name "*.whl" -exec cp {} dist/ \;
153154
154155
- name: Publish Python wheels to PyPI
155156
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)