We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9f1779 commit 7de63eaCopy full SHA for 7de63ea
.github/workflows/cd.yml
@@ -46,16 +46,25 @@ jobs:
46
path: dist/
47
48
publish:
49
- # publish only once (not in matrix)
50
name: Publish package to PyPI
51
needs: pypi
52
runs-on: ubuntu-latest
53
permissions:
54
id-token: write
+
55
steps:
56
- uses: actions/download-artifact@v4
57
with:
58
59
60
+ - name: Gather distributions
61
+ run: |
62
+ mkdir -p dist_flat
63
+ find dist -type f \( -name '*.whl' -o -name '*.tar.gz' \) -exec mv {} dist_flat/ \;
64
+ rm -rf dist
65
+ mv dist_flat dist
66
+ ls -l dist
67
68
- uses: pypa/gh-action-pypi-publish@release/v1
69
70
skip-existing: true
0 commit comments