We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a656f97 commit 5222c8fCopy full SHA for 5222c8f
1 file changed
.github/workflows/publish.yml
@@ -89,9 +89,16 @@ jobs:
89
verify-cert-identity: https://github.com/${{ github.repository }}/.github/workflows/publish.yml@refs/tags/${{ github.ref_name }}
90
verify-oidc-issuer: https://token.actions.githubusercontent.com
91
92
+ - name: Prepare distributions for PyPI upload
93
+ run: |
94
+ mkdir -p publish-dist
95
+ cp dist/*.whl publish-dist/
96
+ cp dist/*.tar.gz publish-dist/
97
+
98
- name: Publish to PyPI
99
uses: pypa/gh-action-pypi-publish@cef221092ed1bacb1cc03d23a2d87d1d172e277b # release/v1
100
with:
101
+ packages-dir: publish-dist
102
skip-existing: true
103
104
- name: Upload signed assets to GitHub Release
0 commit comments