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 7fd776d commit d29d56cCopy full SHA for d29d56c
.github/workflows/publish_pypi.yml
@@ -8,21 +8,21 @@ jobs:
8
build-n-publish:
9
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
10
runs-on: ubuntu-latest
11
-
+
12
steps:
13
- uses: actions/checkout@master
14
- name: Set up Python 3.10
15
uses: actions/setup-python@v3
16
with:
17
python-version: "3.10"
18
19
- name: Install pypa/build
20
run: python -m pip install build --user
21
22
- name: Build a binary wheel and a source tarball
23
- run:
24
- python -m build --sdist --outdir dist/
25
+ run:
+ python -m build --wheel --sdist --outdir dist/
26
- name: Publish distribution 📦 to PyPI
27
if: startsWith(github.ref, 'refs/tags')
28
uses: pypa/gh-action-pypi-publish@release/v1
0 commit comments