Skip to content

Commit 7cecfaa

Browse files
authored
Collect wheel files in CI workflow
Add step to collect wheel files before publishing.
1 parent c604f0c commit 7cecfaa

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,9 +147,13 @@ jobs:
147147
with:
148148
path: dist
149149

150+
- name: Collect wheels
151+
run: |
152+
find dist -name "*.whl" -exec mv {} dist/ \;
153+
150154
- name: Publish Python wheels to PyPI
151155
uses: pypa/gh-action-pypi-publish@release/v1
152156
with:
157+
packages-dir: dist
153158
user: __token__
154159
password: ${{ secrets.PYPI_API_TOKEN }}
155-
packages_dir: .

0 commit comments

Comments
 (0)