We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2373faa commit d17b74dCopy full SHA for d17b74d
1 file changed
.github/workflows/ci.yml
@@ -57,13 +57,13 @@ jobs:
57
uses: actions/download-artifact@v4
58
with:
59
path: dist
60
- - name: Flatten dist packages
+ - name: Gather distribution files
61
run: |
62
- mkdir dist_flat
63
- find dist -name "*.whl" -exec cp {} dist_flat/ \;
64
- find dist -name "*.tar.gz" -exec cp {} dist_flat/ \;
+ mkdir dist
+ find dist -name "*.whl" -exec cp {} dist/ \;
+ find dist -name "*.tar.gz" -exec cp {} dist/ \;
65
- uses: pypa/gh-action-pypi-publish@v1.5.1
66
67
user: __token__
68
password: ${{ secrets.pypi_password }}
69
- packages_dir: dist_flat
+ packages_dir: dist
0 commit comments