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 3fca61e commit fcecdbfCopy full SHA for fcecdbf
1 file changed
.github/workflows/publish.yml
@@ -87,9 +87,16 @@ jobs:
87
verify-cert-identity: https://github.com/${{ github.repository }}/.github/workflows/publish.yml@refs/tags/${{ github.ref_name }}
88
verify-oidc-issuer: https://token.actions.githubusercontent.com
89
90
+ - name: Prepare distributions for PyPI upload
91
+ run: |
92
+ mkdir -p publish-dist
93
+ cp dist/*.whl publish-dist/
94
+ cp dist/*.tar.gz publish-dist/
95
+
96
- name: Publish to PyPI
97
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
98
with:
99
+ packages-dir: publish-dist
100
skip-existing: true
101
102
- name: Upload signed assets to GitHub Release
0 commit comments