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 04e0a89 commit 8897cc6Copy full SHA for 8897cc6
.github/workflows/pypi-release.yml
@@ -30,12 +30,15 @@ jobs:
30
with:
31
python-version: 3.12
32
33
- - name: Install pypa/build
34
- run: python -m pip install build --user
+ - name: Install pypa/build and twine
+ run: python -m pip install --user build twine
35
36
- name: Build a binary wheel and a source tarball
37
run: python -m build --sdist --wheel --outdir dist/
38
39
+ - name: Validate wheel and sdis for Pypi
40
+ run: python -m twine check dist/*
41
+
42
- name: Upload built archives
43
uses: actions/upload-artifact@v4
44
0 commit comments